Skip to content

Commit

Permalink
PubNub SDK v6.4.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pubnub-release-bot committed Oct 30, 2023
1 parent 1c1f463 commit 9d5fa46
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 10 deletions.
15 changes: 11 additions & 4 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: java
version: 6.4.0
version: 6.4.1
schema: 1
scm: github.com/pubnub/java
files:
- build/libs/pubnub-gson-6.4.0-all.jar
- build/libs/pubnub-gson-6.4.1-all.jar
sdks:
-
type: library
Expand All @@ -23,8 +23,8 @@ sdks:
-
distribution-type: library
distribution-repository: maven
package-name: pubnub-gson-6.4.0
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-gson/6.4.0/pubnub-gson-6.4.0.jar
package-name: pubnub-gson-6.4.1
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-gson/6.4.1/pubnub-gson-6.4.1.jar
supported-platforms:
supported-operating-systems:
Android:
Expand Down Expand Up @@ -115,6 +115,13 @@ sdks:
is-required: Required

changelog:
- date: 2023-10-30
version: v6.4.1
changes:
- type: bug
text: "Updated the JSON lib to version 20231013."
- type: bug
text: "Changed license type from MIT to PubNub Software Development Kit License."
- date: 2023-10-16
version: v6.4.0
changes:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v6.4.1
October 30 2023

#### Fixed
- Updated the JSON lib to version 20231013.
- Changed license type from MIT to PubNub Software Development Kit License.

## v6.4.0
October 16 2023

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ You will need the publish and subscribe keys to authenticate your app. Get your
<dependency>
<groupId>com.pubnub</groupId>
<artifactId>pubnub-gson</artifactId>
<version>6.4.0</version>
<version>6.4.1</version>
</dependency>
```

* for Gradle, add the following dependency in your `gradle.build`:
```groovy
implementation 'com.pubnub:pubnub-gson:6.4.0'
implementation 'com.pubnub:pubnub-gson:6.4.1'
```

2. Configure your keys:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}
group = 'com.pubnub'

version = '6.4.0'
version = '6.4.1'

description = """"""

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SONATYPE_HOST=DEFAULT
SONATYPE_AUTOMATIC_RELEASE=true
GROUP=com.pubnub
POM_ARTIFACT_ID=pubnub-gson
VERSION_NAME=6.4.0
VERSION_NAME=6.4.1
POM_PACKAGING=jar

POM_NAME=PubNub Java SDK
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/pubnub/api/PubNub.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public class PubNub {
private static final int TIMESTAMP_DIVIDER = 1000;
private static final int MAX_SEQUENCE = 65535;

private static final String SDK_VERSION = "6.4.0";
private static final String SDK_VERSION = "6.4.1";
private final ListenerManager listenerManager;
private final StateManager stateManager;

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/pubnub/api/PubNubTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void getVersionAndTimeStamp() {
pubnub = new PubNub(pnConfiguration);
String version = pubnub.getVersion();
int timeStamp = pubnub.getTimestamp();
Assert.assertEquals("6.4.0", version);
Assert.assertEquals("6.4.1", version);
Assert.assertTrue(timeStamp > 0);
}

Expand Down

0 comments on commit 9d5fa46

Please sign in to comment.