Skip to content

Commit 2643a15

Browse files
Update PubNub Swift SDK dependency (#340)
* Update PubNub Swift SDK dependency to 9.0.1 * PubNub SDK v10.4.6 release. --------- Co-authored-by: PubNub Release Bot <[email protected]>
1 parent 46494e3 commit 2643a15

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

.pubnub.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: kotlin
2-
version: 10.4.5
2+
version: 10.4.6
33
schema: 1
44
scm: github.com/pubnub/kotlin
55
files:
6-
- build/libs/pubnub-kotlin-10.4.5-all.jar
6+
- build/libs/pubnub-kotlin-10.4.6-all.jar
77
sdks:
88
-
99
type: library
@@ -23,8 +23,8 @@ sdks:
2323
-
2424
distribution-type: library
2525
distribution-repository: maven
26-
package-name: pubnub-kotlin-10.4.5
27-
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.4.5/pubnub-kotlin-10.4.5.jar
26+
package-name: pubnub-kotlin-10.4.6
27+
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.4.6/pubnub-kotlin-10.4.6.jar
2828
supported-platforms:
2929
supported-operating-systems:
3030
Android:
@@ -121,6 +121,11 @@ sdks:
121121
license-url: https://www.apache.org/licenses/LICENSE-2.0.txt
122122
is-required: Required
123123
changelog:
124+
- date: 2025-03-20
125+
version: v10.4.6
126+
changes:
127+
- type: bug
128+
text: "Internal fixes."
124129
- date: 2025-03-07
125130
version: v10.4.5
126131
changes:

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v10.4.6
2+
March 20 2025
3+
4+
#### Fixed
5+
- Internal fixes.
6+
17
## v10.4.5
28
March 07 2025
39

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You will need the publish and subscribe keys to authenticate your app. Get your
2020
<dependency>
2121
<groupId>com.pubnub</groupId>
2222
<artifactId>pubnub-kotlin</artifactId>
23-
<version>10.4.5</version>
23+
<version>10.4.6</version>
2424
</dependency>
2525
```
2626

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RELEASE_SIGNING_ENABLED=true
1818
SONATYPE_HOST=DEFAULT
1919
SONATYPE_AUTOMATIC_RELEASE=false
2020
GROUP=com.pubnub
21-
VERSION_NAME=10.4.5
21+
VERSION_NAME=10.4.6
2222
POM_PACKAGING=jar
2323

2424
POM_NAME=PubNub SDK

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dokka = "1.9.20"
1313
kotlinx_datetime = "0.6.1"
1414
kotlinx_coroutines = "1.9.0"
1515
pubnub_js = "8.6.0"
16-
pubnub_swift = "9.0.0"
16+
pubnub_swift = "9.0.1"
1717

1818
[libraries]
1919
retrofit2 = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit2" }

pubnub-kotlin/pubnub-kotlin-impl/src/test/kotlin/com/pubnub/api/legacy/PubNubImplTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class PubNubImplTest : BaseTest() {
5656
fun getVersionAndTimeStamp() {
5757
val version = PubNubImpl.SDK_VERSION
5858
val timeStamp = PubNubImpl.timestamp()
59-
assertEquals("10.4.5", version)
59+
assertEquals("10.4.6", version)
6060
assertTrue(timeStamp > 0)
6161
}
6262

0 commit comments

Comments
 (0)