From 59a9c973f72706208a1f6c2882e24dcb46db4545 Mon Sep 17 00:00:00 2001 From: jguz-pubnub Date: Wed, 30 Jul 2025 09:32:32 +0200 Subject: [PATCH 1/2] Update PubNub Swift SDK dependency --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 483130197..0d5746775 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 = "8.6.0" -pubnub_swift = "9.2.2" +pubnub_swift = "9.3.0" [libraries] retrofit2 = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit2" } From 746fe9b301988328f37263aee6c1288ffe9acffb Mon Sep 17 00:00:00 2001 From: PubNub Release Bot <120067856+pubnub-release-bot@users.noreply.github.com> Date: Wed, 30 Jul 2025 12:03:15 +0200 Subject: [PATCH 2/2] PubNub SDK v10.5.5 release. --- .pubnub.yml | 13 +++++++++---- CHANGELOG.md | 6 ++++++ README.md | 2 +- gradle.properties | 2 +- .../kotlin/com/pubnub/api/legacy/PubNubImplTest.kt | 2 +- 5 files changed, 18 insertions(+), 7 deletions(-) diff --git a/.pubnub.yml b/.pubnub.yml index b39d0151e..1c148c8a6 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,9 +1,9 @@ name: kotlin -version: 10.5.4 +version: 10.5.5 schema: 1 scm: github.com/pubnub/kotlin files: - - build/libs/pubnub-kotlin-10.5.4-all.jar + - build/libs/pubnub-kotlin-10.5.5-all.jar sdks: - type: library @@ -23,8 +23,8 @@ sdks: - distribution-type: library distribution-repository: maven - package-name: pubnub-kotlin-10.5.4 - location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.5.4/pubnub-kotlin-10.5.4.jar + package-name: pubnub-kotlin-10.5.5 + location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.5.5/pubnub-kotlin-10.5.5.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-30 + version: v10.5.5 + changes: + - type: bug + text: "Internal fixes." - date: 2025-07-21 version: v10.5.4 changes: diff --git a/CHANGELOG.md b/CHANGELOG.md index ad2e2177c..4212be4c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v10.5.5 +July 30 2025 + +#### Fixed +- Internal fixes. + ## v10.5.4 July 21 2025 diff --git a/README.md b/README.md index 96789f151..2c823755e 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.4 + 10.5.5 ``` diff --git a/gradle.properties b/gradle.properties index 507d92079..6c8cf6436 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.4 +VERSION_NAME=10.5.5 POM_PACKAGING=jar POM_NAME=PubNub SDK 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 1a6da7c17..08cb8e965 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.4", version) + assertEquals("10.5.5", version) assertTrue(timeStamp > 0) }