diff --git a/.pubnub.yml b/.pubnub.yml index 980475510..b79284b81 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -121,7 +121,7 @@ sdks: license-url: https://www.apache.org/licenses/LICENSE-2.0.txt is-required: Required changelog: - - date: 2025-07-03 + - date: 2025-07-15 version: v10.5.3 changes: - type: bug diff --git a/CHANGELOG.md b/CHANGELOG.md index a3d902e9c..30c1ec4b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ ## v10.5.3 -July 03 2025 +July 15 2025 #### Fixed - Internal fixes. diff --git a/build.gradle.kts b/build.gradle.kts index 8035c5990..cda0b1bc0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,12 @@ plugins { nexusPublishing { repositories { - sonatype() + sonatype { + nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/")) + snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/")) + username.set(System.getenv("NEXUS_USERNAME")) + password.set(System.getenv("NEXUS_PASSWORD")) + } } }