Skip to content

Commit

Permalink
Fixed release description.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-cebo committed Jan 7, 2025
1 parent 062370d commit a4c791d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 21 deletions.
15 changes: 4 additions & 11 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: kotlin
version: 10.3.3
version: 10.3.2
schema: 1
scm: github.com/pubnub/kotlin
files:
- build/libs/pubnub-kotlin-10.3.3-all.jar
- build/libs/pubnub-kotlin-10.3.2-all.jar
sdks:
-
type: library
Expand All @@ -23,8 +23,8 @@ sdks:
-
distribution-type: library
distribution-repository: maven
package-name: pubnub-kotlin-10.3.3
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.3.3/pubnub-kotlin-10.3.3.jar
package-name: pubnub-kotlin-10.3.2
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.3.2/pubnub-kotlin-10.3.2.jar
supported-platforms:
supported-operating-systems:
Android:
Expand Down Expand Up @@ -121,13 +121,6 @@ sdks:
license-url: https://www.apache.org/licenses/LICENSE-2.0.txt
is-required: Required
changelog:
- date: 2025-01-07
version: v10.3.3
changes:
- type: improvement
text: "Added validation for Leave and Heartbeat to ensure user receives an error when providing empty strings for channels or groups."
- type: improvement
text: "Internal changes for Chat SDK."
- date: 2024-12-16
version: v10.3.2
changes:
Expand Down
7 changes: 0 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
## v10.3.3
January 07 2025

#### Modified
- Added validation for Leave and Heartbeat to ensure user receives an error when providing empty strings for channels or groups.
- Internal changes for Chat SDK.

## v10.3.2
December 16 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.3.3</version>
<version>10.3.2</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.3.3
VERSION_NAME=10.3.2
POM_PACKAGING=jar

POM_NAME=PubNub SDK
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.3.3", version)
assertEquals("10.3.2", version)
assertTrue(timeStamp > 0)
}

Expand Down

0 comments on commit a4c791d

Please sign in to comment.