Skip to content

Commit b03b1a4

Browse files
Release (#307)
* PubNub SDK v10.1.0 release. --------- Co-authored-by: PubNub Release Bot <[email protected]>
1 parent e615e0c commit b03b1a4

File tree

6 files changed

+36
-8
lines changed

6 files changed

+36
-8
lines changed

.pubnub.yml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: kotlin
2-
version: 10.0.0
2+
version: 10.1.0
33
schema: 1
44
scm: github.com/pubnub/kotlin
55
files:
6-
- build/libs/pubnub-kotlin-10.0.0-all.jar
6+
- build/libs/pubnub-kotlin-10.1.0-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.0.0
27-
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.0.0/pubnub-kotlin-10.0.0.jar
26+
package-name: pubnub-kotlin-10.1.0
27+
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.1.0/pubnub-kotlin-10.1.0.jar
2828
supported-platforms:
2929
supported-operating-systems:
3030
Android:
@@ -114,6 +114,21 @@ sdks:
114114
license-url: https://www.apache.org/licenses/LICENSE-2.0.txt
115115
is-required: Required
116116
changelog:
117+
- date: 2024-11-06
118+
version: v10.1.0
119+
changes:
120+
- type: feature
121+
text: "Add extension selection and support for single file in migration_tool."
122+
- type: feature
123+
text: "Move shared java/kotlin APIs to a shared module."
124+
- type: feature
125+
text: "Added timetoken utils methods."
126+
- type: feature
127+
text: "Added getToken to Kotlin SDK."
128+
- type: feature
129+
text: "Added authToken (PAM v3) to Kotlin SDK PNConfiguration."
130+
- type: bug
131+
text: "Fix for NullPointerException in `pubnub-gson` when grant() is called without authKeys."
117132
- date: 2024-09-24
118133
version: v10.0.0
119134
changes:

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v10.1.0
2+
November 06 2024
3+
4+
#### Added
5+
- Add extension selection and support for single file in migration_tool.
6+
- Move shared java/kotlin APIs to a shared module.
7+
- Added timetoken utils methods.
8+
- Added getToken to Kotlin SDK.
9+
- Added authToken (PAM v3) to Kotlin SDK PNConfiguration.
10+
11+
#### Fixed
12+
- Fix for NullPointerException in `pubnub-gson` when grant() is called without authKeys.
13+
114
## v10.0.0
215
September 24 2024
316

README.md

Lines changed: 1 addition & 1 deletion
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.0.0</version>
23+
<version>10.1.0</version>
2424
</dependency>
2525
```
2626

gradle.properties

Lines changed: 1 addition & 1 deletion
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.0.0
21+
VERSION_NAME=10.1.0
2222
POM_PACKAGING=jar
2323

2424
POM_NAME=PubNub SDK

pubnub-kotlin/pubnub-kotlin-api/src/jvmMain/kotlin/com/pubnub/api/PubNub.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ actual interface PubNub : StatusEmitter, EventEmitter {
271271
fun disconnect()
272272

273273
/**
274-
* Unsubscribe from all channels and all channel groups
274+
* Unsubscribe from all channels and all channel groups.
275275
*/
276276
actual fun unsubscribeAll()
277277

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

Lines changed: 1 addition & 1 deletion
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.0.0", version)
59+
assertEquals("10.1.0", version)
6060
assertTrue(timeStamp > 0)
6161
}
6262

0 commit comments

Comments
 (0)