diff --git a/.pubnub.yml b/.pubnub.yml index b49930a1f..cee682560 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,9 +1,9 @@ name: kotlin -version: 10.5.6 +version: 10.5.7 schema: 1 scm: github.com/pubnub/kotlin files: - - build/libs/pubnub-kotlin-10.5.6-all.jar + - build/libs/pubnub-kotlin-10.5.7-all.jar sdks: - type: library @@ -23,8 +23,8 @@ sdks: - distribution-type: library distribution-repository: maven - package-name: pubnub-kotlin-10.5.6 - location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.5.6/pubnub-kotlin-10.5.6.jar + package-name: pubnub-kotlin-10.5.7 + location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.5.7/pubnub-kotlin-10.5.7.jar supported-platforms: supported-operating-systems: Android: @@ -121,6 +121,11 @@ sdks: license-url: https://www.apache.org/licenses/LICENSE-2.0.txt is-required: Required changelog: + - date: 2025-07-31 + version: v10.5.7 + changes: + - type: bug + text: "Internal fixes." - date: 2025-07-31 version: v10.5.6 changes: diff --git a/CHANGELOG.md b/CHANGELOG.md index 79fefb4a4..915fa0985 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v10.5.7 +July 31 2025 + +#### Fixed +- Internal fixes. + ## v10.5.6 July 31 2025 diff --git a/README.md b/README.md index 9840d60fe..bc3f582f7 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ You will need the publish and subscribe keys to authenticate your app. Get your com.pubnub pubnub-kotlin - 10.5.6 + 10.5.7 ``` diff --git a/gradle.properties b/gradle.properties index 7d1715d8a..eb93d8cdd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,7 +18,7 @@ RELEASE_SIGNING_ENABLED=true SONATYPE_HOST=DEFAULT SONATYPE_AUTOMATIC_RELEASE=false GROUP=com.pubnub -VERSION_NAME=10.5.6 +VERSION_NAME=10.5.7 POM_PACKAGING=jar POM_NAME=PubNub SDK diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index c1afba0c9..822cb0e0b 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -13,7 +13,7 @@ dokka = "2.0.0" kotlinx_datetime = "0.6.2" kotlinx_coroutines = "1.10.2" pubnub_js = "9.8.1" -pubnub_swift = "9.3.0" +pubnub_swift = "9.3.1" [libraries] retrofit2 = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit2" } diff --git a/pubnub-kotlin/pubnub-kotlin-impl/src/test/kotlin/com/pubnub/api/legacy/PubNubImplTest.kt b/pubnub-kotlin/pubnub-kotlin-impl/src/test/kotlin/com/pubnub/api/legacy/PubNubImplTest.kt index fdfab7b2c..5d26db31d 100644 --- a/pubnub-kotlin/pubnub-kotlin-impl/src/test/kotlin/com/pubnub/api/legacy/PubNubImplTest.kt +++ b/pubnub-kotlin/pubnub-kotlin-impl/src/test/kotlin/com/pubnub/api/legacy/PubNubImplTest.kt @@ -56,7 +56,7 @@ class PubNubImplTest : BaseTest() { fun getVersionAndTimeStamp() { val version = PubNubImpl.SDK_VERSION val timeStamp = PubNubImpl.timestamp() - assertEquals("10.5.6", version) + assertEquals("10.5.7", version) assertTrue(timeStamp > 0) }