Skip to content

Commit 454bcb2

Browse files
authored
Release v2.11.1 (#288)
# Changelog ### Added * Support for `unknown` as a conferencing provider. # 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 1ccfa64 commit 454bcb2

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Nylas Java SDK Changelog
22

3+
## [2.11.1] - Release 2025-07-11
4+
5+
### Added
6+
* Support for `unknown` as a conferencing provider.
37

48
## [2.11.0] - Release 2025-06-20
59

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.11.0")
33+
implementation("com.nylas.sdk:nylas:2.11.1")
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.11.0-uber.jar`.
45+
This creates a new jar file in `build/libs/nylas-java-sdk-2.11.1-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.

build.gradle.kts

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ plugins {
77
application
88
signing
99
jacoco
10+
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
1011
}
1112

1213
repositories {
@@ -126,13 +127,14 @@ publishing {
126127
}
127128
}
128129
}
129-
repositories {
130-
maven {
131-
name = "ossrh"
132-
url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2")
133-
credentials(PasswordCredentials::class)
130+
}
131+
nexusPublishing {
132+
repositories {
133+
sonatype {
134+
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
135+
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
136+
}
134137
}
135-
}
136138
}
137139

138140
signing {

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.11.0
2+
version=2.11.1
33

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

0 commit comments

Comments
 (0)