File tree Expand file tree Collapse file tree 5 files changed +13
-4
lines changed
src/main/java/com/pubnub/api Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 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+
21106-03-16 - 4.0.0
312- first GA.
413
Original file line number Diff line number Diff line change 1- 4.0.2
1+ 4.0.3
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
99 id ' findbugs'
1010}
1111group = ' com.pubnub'
12- version = ' 4.0.2 '
12+ version = ' 4.0.3 '
1313
1414description = """ """
1515
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments