Skip to content

Commit 1baf9b2

Browse files
author
Max Presman
committed
4.0.11
1 parent 8984f41 commit 1baf9b2

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.pubnub.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
name: java
2-
version: 4.0.10
2+
version: 4.0.11
33
schema: 1
44
scm: github.com/pubnub/java
55
changelog:
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:

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ checkstyle {
6161

6262
tasks.withType(Checkstyle) {
6363

64-
exclude '**/vendor/**'
64+
exclude '**/vendor/**', "**/*Test*"
6565

6666
reports {
6767
xml.enabled = true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)