Skip to content

Commit

Permalink
Release (#307)
Browse files Browse the repository at this point in the history
* PubNub SDK v10.1.0 release.

---------

Co-authored-by: PubNub Release Bot <[email protected]>
  • Loading branch information
marcin-cebo and pubnub-release-bot authored Nov 6, 2024
1 parent e615e0c commit b03b1a4
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 8 deletions.
23 changes: 19 additions & 4 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: kotlin
version: 10.0.0
version: 10.1.0
schema: 1
scm: github.com/pubnub/kotlin
files:
- build/libs/pubnub-kotlin-10.0.0-all.jar
- build/libs/pubnub-kotlin-10.1.0-all.jar
sdks:
-
type: library
Expand All @@ -23,8 +23,8 @@ sdks:
-
distribution-type: library
distribution-repository: maven
package-name: pubnub-kotlin-10.0.0
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.0.0/pubnub-kotlin-10.0.0.jar
package-name: pubnub-kotlin-10.1.0
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.1.0/pubnub-kotlin-10.1.0.jar
supported-platforms:
supported-operating-systems:
Android:
Expand Down Expand Up @@ -114,6 +114,21 @@ sdks:
license-url: https://www.apache.org/licenses/LICENSE-2.0.txt
is-required: Required
changelog:
- date: 2024-11-06
version: v10.1.0
changes:
- type: feature
text: "Add extension selection and support for single file in migration_tool."
- type: feature
text: "Move shared java/kotlin APIs to a shared module."
- type: feature
text: "Added timetoken utils methods."
- type: feature
text: "Added getToken to Kotlin SDK."
- type: feature
text: "Added authToken (PAM v3) to Kotlin SDK PNConfiguration."
- type: bug
text: "Fix for NullPointerException in `pubnub-gson` when grant() is called without authKeys."
- date: 2024-09-24
version: v10.0.0
changes:
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## v10.1.0
November 06 2024

#### Added
- Add extension selection and support for single file in migration_tool.
- Move shared java/kotlin APIs to a shared module.
- Added timetoken utils methods.
- Added getToken to Kotlin SDK.
- Added authToken (PAM v3) to Kotlin SDK PNConfiguration.

#### Fixed
- Fix for NullPointerException in `pubnub-gson` when grant() is called without authKeys.

## v10.0.0
September 24 2024

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ You will need the publish and subscribe keys to authenticate your app. Get your
<dependency>
<groupId>com.pubnub</groupId>
<artifactId>pubnub-kotlin</artifactId>
<version>10.0.0</version>
<version>10.1.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RELEASE_SIGNING_ENABLED=true
SONATYPE_HOST=DEFAULT
SONATYPE_AUTOMATIC_RELEASE=false
GROUP=com.pubnub
VERSION_NAME=10.0.0
VERSION_NAME=10.1.0
POM_PACKAGING=jar

POM_NAME=PubNub SDK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ actual interface PubNub : StatusEmitter, EventEmitter {
fun disconnect()

/**
* Unsubscribe from all channels and all channel groups
* Unsubscribe from all channels and all channel groups.
*/
actual fun unsubscribeAll()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class PubNubImplTest : BaseTest() {
fun getVersionAndTimeStamp() {
val version = PubNubImpl.SDK_VERSION
val timeStamp = PubNubImpl.timestamp()
assertEquals("10.0.0", version)
assertEquals("10.1.0", version)
assertTrue(timeStamp > 0)
}

Expand Down

0 comments on commit b03b1a4

Please sign in to comment.