diff --git a/CHANGELOG.md b/CHANGELOG.md index e7ee204c..8a2eb4d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Nylas Java SDK Changelog +## [2.11.1] - Release 2025-07-11 + +### Added +* Support for `unknown` as a conferencing provider. ## [2.11.0] - Release 2025-06-20 diff --git a/README.md b/README.md index f58371c2..837bb57c 100644 --- a/README.md +++ b/README.md @@ -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.11.0") +implementation("com.nylas.sdk:nylas:2.11.1") ``` ### Build from source @@ -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.11.0-uber.jar`. +This creates a new jar file in `build/libs/nylas-java-sdk-2.11.1-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. diff --git a/build.gradle.kts b/build.gradle.kts index cc20e9b0..055ff953 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,6 +7,7 @@ plugins { application signing jacoco + id("io.github.gradle-nexus.publish-plugin") version "2.0.0" } repositories { @@ -126,13 +127,14 @@ publishing { } } } - repositories { - maven { - name = "ossrh" - url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2") - credentials(PasswordCredentials::class) +} +nexusPublishing { + repositories { + sonatype { + nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/")) + snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/")) + } } - } } signing { diff --git a/gradle.properties b/gradle.properties index b305f3c8..61d22c14 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=com.nylas.sdk -version=2.11.0 +version=2.11.1 # Override and set these in ~/.gradle/gradle.properties ossrhUser=