Skip to content

Commit 768b539

Browse files
author
Max Presman
committed
bump version
1 parent 145dde6 commit 768b539

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11

2+
4.0.3
3+
- fire() method and no-replicaton options.
4+
5+
4.0.2
6+
- fix to the version fetching.
7+
8+
4.0.1
9+
- adjustment of the subscribe loop to alleviate duplicate dispatches.
10+
211
06-03-16 - 4.0.0
312
- first GA.
413

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.2
1+
4.0.3

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id 'findbugs'
1010
}
1111
group = 'com.pubnub'
12-
version = '4.0.2'
12+
version = '4.0.3'
1313

1414
description = """"""
1515

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public class PubNub {
5050
private static final int TIMESTAMP_DIVIDER = 1000;
5151
private static final int MAX_SEQUENCE = 65535;
5252

53-
private static final String SDK_VERSION = "4.0.2";
53+
private static final String SDK_VERSION = "4.0.3";
5454

5555
public PubNub(final PNConfiguration initialConfig) {
5656
this.configuration = initialConfig;

src/main/java/com/pubnub/api/endpoints/Endpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ protected final Retrofit createRetrofit() {
260260
protected final Map<String, String> createBaseParams() {
261261
Map<String, String> params = new HashMap<>();
262262

263-
params.put("pnsdk", "Java/" + this.pubnub.getVersion());
263+
params.put("pnsdk", "PubNub-Java-Unified/" + this.pubnub.getVersion());
264264
params.put("uuid", this.pubnub.getConfiguration().getUuid());
265265

266266
// add the auth key for publish and subscribe.

0 commit comments

Comments
 (0)