Skip to content

Commit ccc1fc8

Browse files
Changed license type from MIT to PubNub Software Development Kit License (#287)
* Changed license type from MIT to PubNub Software Development Kit License * Updated the JSON library to version 20231013 * PubNub SDK v6.4.1 release. --------- Co-authored-by: PubNub Release Bot <120067856+pubnub-release-bot@users.noreply.github.com>
1 parent adafcd2 commit ccc1fc8

File tree

7 files changed

+30
-16
lines changed

7 files changed

+30
-16
lines changed

.pubnub.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: java
2-
version: 6.4.0
2+
version: 6.4.1
33
schema: 1
44
scm: github.com/pubnub/java
55
files:
6-
- build/libs/pubnub-gson-6.4.0-all.jar
6+
- build/libs/pubnub-gson-6.4.1-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-gson-6.4.0
27-
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-gson/6.4.0/pubnub-gson-6.4.0.jar
26+
package-name: pubnub-gson-6.4.1
27+
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-gson/6.4.1/pubnub-gson-6.4.1.jar
2828
supported-platforms:
2929
supported-operating-systems:
3030
Android:
@@ -108,13 +108,20 @@ sdks:
108108
is-required: Required
109109
-
110110
name: json
111-
min-version: "20230227"
112-
location: https://repo.maven.apache.org/maven2/org/json/json/20230227/json-20230227.jar
111+
min-version: "20231013"
112+
location: https://repo.maven.apache.org/maven2/org/json/json/20231013/json-20231013.jar
113113
license: Public Domain
114-
license-url: https://github.com/stleary/JSON-java/blob/20230227/LICENSE
114+
license-url: https://github.com/stleary/JSON-java/blob/20231013/LICENSE
115115
is-required: Required
116116

117117
changelog:
118+
- date: 2023-10-30
119+
version: v6.4.1
120+
changes:
121+
- type: bug
122+
text: "Updated the JSON lib to version 20231013."
123+
- type: bug
124+
text: "Changed license type from MIT to PubNub Software Development Kit License."
118125
- date: 2023-10-16
119126
version: v6.4.0
120127
changes:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v6.4.1
2+
October 30 2023
3+
4+
#### Fixed
5+
- Updated the JSON lib to version 20231013.
6+
- Changed license type from MIT to PubNub Software Development Kit License.
7+
18
## v6.4.0
29
October 16 2023
310

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ You will need the publish and subscribe keys to authenticate your app. Get your
2222
<dependency>
2323
<groupId>com.pubnub</groupId>
2424
<artifactId>pubnub-gson</artifactId>
25-
<version>6.4.0</version>
25+
<version>6.4.1</version>
2626
</dependency>
2727
```
2828

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

3434
2. Configure your keys:

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111
group = 'com.pubnub'
1212

13-
version = '6.4.0'
13+
version = '6.4.1'
1414

1515
description = """"""
1616

@@ -70,7 +70,7 @@ dependencies {
7070
testImplementation group: 'org.awaitility', name: 'awaitility', version: '4.0.1'
7171
testImplementation group: 'org.mockito', name: 'mockito-core', version: '4.8.1'
7272
integrationTestImplementation group: 'org.aeonbits.owner', name: 'owner', version: '1.0.8'
73-
implementation group: 'org.json', name: 'json', version: '20230227'
73+
implementation group: 'org.json', name: 'json', version: '20231013'
7474
testImplementation group: 'io.cucumber', name: 'cucumber-java', version: '6.10.4'
7575
testImplementation group: 'io.cucumber', name: 'cucumber-junit', version: '6.10.4'
7676
testImplementation group: 'io.cucumber', name: 'cucumber-picocontainer', version: '6.10.4'

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ SONATYPE_HOST=DEFAULT
33
SONATYPE_AUTOMATIC_RELEASE=true
44
GROUP=com.pubnub
55
POM_ARTIFACT_ID=pubnub-gson
6-
VERSION_NAME=6.4.0
6+
VERSION_NAME=6.4.1
77
POM_PACKAGING=jar
88

99
POM_NAME=PubNub Java SDK
1010
POM_DESCRIPTION=PubNub is a cross-platform client-to-client (1:1 and 1:many) push service in the cloud, capable of broadcasting real-time messages to millions of web and mobile clients simultaneously, in less than a quarter second!
1111
POM_INCEPTION_YEAR=2009
1212
POM_URL=https://github.com/pubnub/java
1313

14-
POM_LICENSE_NAME=MIT License
15-
POM_LICENSE_URL=https://github.com/pubnub/pubnub-api/blob/master/LICENSE
14+
POM_LICENSE_NAME=PubNub Software Development Kit License
15+
POM_LICENSE_URL=https://github.com/pubnub/java/blob/master/LICENSE
1616
POM_LICENSE_DIST=repo
1717

1818
POM_SCM_URL=https://github.com/pubnub/java

src/main/java/com/pubnub/api/PubNub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public class PubNub {
105105
private static final int TIMESTAMP_DIVIDER = 1000;
106106
private static final int MAX_SEQUENCE = 65535;
107107

108-
private static final String SDK_VERSION = "6.4.0";
108+
private static final String SDK_VERSION = "6.4.1";
109109
private final ListenerManager listenerManager;
110110
private final StateManager stateManager;
111111

src/test/java/com/pubnub/api/PubNubTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public void getVersionAndTimeStamp() {
100100
pubnub = new PubNub(pnConfiguration);
101101
String version = pubnub.getVersion();
102102
int timeStamp = pubnub.getTimestamp();
103-
Assert.assertEquals("6.4.0", version);
103+
Assert.assertEquals("6.4.1", version);
104104
Assert.assertTrue(timeStamp > 0);
105105
}
106106

0 commit comments

Comments
 (0)