Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.5.0 Release #247

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Nylas Java SDK Changelog

### Unreleased
### [2.5.0] - Released 2024-09-25

### Added
* Added new error class `NylasSdkRemoteClosedError` for when the remote connection is closed
Expand Down Expand Up @@ -482,7 +482,8 @@ This second release aims toward API stability so that we can get to v1.0.0.

Initial preview release

[Unreleased]: https://github.com/nylas/nylas-java/compare/v2.4.1...HEAD
[Unreleased]: https://github.com/nylas/nylas-java/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/nylas/nylas-java/releases/tag/v2.5.0
[2.4.1]: https://github.com/nylas/nylas-java/releases/tag/v2.4.1
[2.4.0]: https://github.com/nylas/nylas-java/releases/tag/v2.4.0
[2.3.2]: https://github.com/nylas/nylas-java/releases/tag/v2.3.2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ If you have a question about the Nylas Communications Platform, [contact Nylas S
If you're using Gradle, add the following to the dependencies section of `build.gradle`:

```groovy
implementation("com.nylas.sdk:nylas:2.4.1")
implementation("com.nylas.sdk:nylas:2.5.0")
```

### Build from source
Expand All @@ -42,7 +42,7 @@ git clone https://github.com/nylas/nylas-java.git && cd nylas-java
./gradlew build uberJar
```

This creates a new jar file in `build/libs/nylas-java-sdk-2.4.1-uber.jar`.
This creates a new jar file in `build/libs/nylas-java-sdk-2.5.0-uber.jar`.

See the Gradle documentation on [Building Libraries](https://guides.gradle.org/building-java-libraries/)
or the [Gradle User Manual](https://docs.gradle.org/current/userguide/userguide.html) for more information.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.nylas.sdk
version=2.4.1
version=2.5.0

# Override and set these in ~/.gradle/gradle.properties
ossrhUser=
Expand Down
Loading