File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11name : java
2- version : 4.0.10
2+ version : 4.0.11
33schema : 1
44scm : github.com/pubnub/java
55changelog :
6+ - version : v4.0.11
7+ date :
8+ changes :
9+ - type : improvement
10+ text : bumping build process for gradle 3 / merging documentation into the repo and test adjustments
611 - version : v4.0.10
712 date :
813 changes :
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ checkstyle {
6161
6262tasks. withType(Checkstyle ) {
6363
64- exclude ' **/vendor/**'
64+ exclude ' **/vendor/**' , " **/*Test* "
6565
6666 reports {
6767 xml. enabled = true
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public class PubNub {
5454 private static final int TIMESTAMP_DIVIDER = 1000 ;
5555 private static final int MAX_SEQUENCE = 65535 ;
5656
57- private static final String SDK_VERSION = "4.0.10 " ;
57+ private static final String SDK_VERSION = "4.0.11 " ;
5858
5959 public PubNub (final PNConfiguration initialConfig ) {
6060 this .configuration = initialConfig ;
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ public void getVersionAndTimeStamp() throws PubNubException {
9191 pubnub = new PubNub (pnConfiguration );
9292 String version = pubnub .getVersion ();
9393 int timeStamp = pubnub .getTimestamp ();
94- Assert .assertEquals ("4.0.10 " , version );
94+ Assert .assertEquals ("4.0.11 " , version );
9595 Assert .assertTrue (timeStamp > 0 );
9696 }
9797
You can’t perform that action at this time.
0 commit comments