Skip to content
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Nylas Java SDK Changelog

## [Unreleased]
## [v2.16.1] - Release 2026-05-21

### Fixed
* `UpdateEventRequest.Builder.clearColorId()` now sends `"color_id": null` to the Nylas API, allowing event colors to be cleared. Previously, setting `colorId` to `null` was silently omitted from the request body due to Moshi's default null-skipping behavior, leaving the existing color unchanged. (#324)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ This repository is for contributors and anyone installing the SDK from source. I
Kotlin DSL (`build.gradle.kts`):

```kotlin
implementation("com.nylas.sdk:nylas:2.16.0")
implementation("com.nylas.sdk:nylas:2.16.1")
```

Groovy (`build.gradle`):

```groovy
implementation 'com.nylas.sdk:nylas:2.16.0'
implementation 'com.nylas.sdk:nylas:2.16.1'
```

### Maven
Expand All @@ -65,7 +65,7 @@ implementation 'com.nylas.sdk:nylas:2.16.0'
<dependency>
<groupId>com.nylas.sdk</groupId>
<artifactId>nylas</artifactId>
<version>2.16.0</version>
<version>2.16.1</version>
</dependency>
```

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.16.0
version=2.16.1

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