Skip to content

Commit 8a26f4f

Browse files
authored
Release v2.14.0 (#299)
# Changelog ### Added * `is_plaintext` support in `SendMessageRequest` and `CreateDraftRequest` to control plain text vs HTML message formatting ### Changed * `SendMessageRequest.sendAt` field changed from `Int?` to `Long?` to support Unix timestamps beyond 2038. Maintains backward compatibility through method overloading - existing `Int` parameters are automatically converted to `Long`. **Note:** Kotlin users passing integer literals may need to specify type explicitly (e.g., `1620000000L` or `1620000000 as Int`). # License <!-- Your PR comment must contain the following line for us to merge the PR. --> I confirm that this contribution is made under the terms of the MIT license and that I have the authority necessary to make this contribution on behalf of its copyright owner.
1 parent ab3c426 commit 8a26f4f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Nylas Java SDK Changelog
22

3-
## [Unreleased]
3+
## [2.14.0]
44

55
### Added
66
* `is_plaintext` support in `SendMessageRequest` and `CreateDraftRequest` to control plain text vs HTML message formatting

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ If you have a question about the Nylas Communications Platform, [contact Nylas S
3030
If you're using Gradle, add the following to the dependencies section of `build.gradle`:
3131

3232
```groovy
33-
implementation("com.nylas.sdk:nylas:2.13.1")
33+
implementation("com.nylas.sdk:nylas:2.14.0")
3434
```
3535

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

45-
This creates a new jar file in `build/libs/nylas-java-sdk-2.13.1-uber.jar`.
45+
This creates a new jar file in `build/libs/nylas-java-sdk-2.14.0-uber.jar`.
4646

4747
See the Gradle documentation on [Building Libraries](https://guides.gradle.org/building-java-libraries/)
4848
or the [Gradle User Manual](https://docs.gradle.org/current/userguide/userguide.html) for more information.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=com.nylas.sdk
2-
version=2.13.1
2+
version=2.14.0
33

44
# Override and set these in ~/.gradle/gradle.properties
55
ossrhUser=

0 commit comments

Comments
 (0)