Skip to content

Commit 47b5be7

Browse files
author
Stephen Asbury
committed
updated version to 2.6.6
1 parent c75db3f commit 47b5be7

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11

22
# Change Log
33

4+
## Version 2.6.6
5+
6+
* [FIXED] - #274 - Added a check to prevent double event notification
7+
* [CHANGED] - #276 - Updated TLS certs to match go client
8+
* [FIXED] - #275 - Updated connect to randomize with the same code as reconnect
9+
410
## Version 2.6.2, 2.6.3, 2.6.4 & 2.6.5
511

612
* [FIXED] - problem with jars being built with jdk 11

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ The java-nats client is provided in a single jar file, with a single external de
5252

5353
### Downloading the Jar
5454

55-
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.5/jnats-2.6.5.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.5/jnats-2.6.5.jar).
55+
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.6/jnats-2.6.6.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.6/jnats-2.6.6.jar).
5656

57-
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.5/jnats-2.6.5-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.5/jnats-2.6.5-examples.jar).
57+
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.6/jnats-2.6.6-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.6/jnats-2.6.6-examples.jar).
5858

5959
To use NKeys, you will need the ed25519 library, which can be downloaded at [https://repo1.maven.org/maven2/net/i2p/crypto/eddsa/0.3.0/eddsa-0.3.0.jar](https://repo1.maven.org/maven2/net/i2p/crypto/eddsa/0.3.0/eddsa-0.3.0.jar).
6060

@@ -64,7 +64,7 @@ The NATS client is available in the Maven central repository, and can be importe
6464

6565
```groovy
6666
dependencies {
67-
implementation 'io.nats:jnats:2.6.5'
67+
implementation 'io.nats:jnats:2.6.6'
6868
}
6969
```
7070

@@ -90,7 +90,7 @@ The NATS client is available on the Maven central repository, and can be importe
9090
<dependency>
9191
<groupId>io.nats</groupId>
9292
<artifactId>jnats</artifactId>
93-
<version>2.6.5</version>
93+
<version>2.6.6</version>
9494
</dependency>
9595
```
9696

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ plugins {
1616
// Be sure to update Nats.java with the latest version, the change log and the package-info.java
1717
def versionMajor = 2
1818
def versionMinor = 6
19-
def versionPatch = 5
19+
def versionPatch = 6
2020
def versionModifier = ""
21-
def jarVersion = "2.6.5"
21+
def jarVersion = "2.6.6"
2222
def branch = System.getenv("TRAVIS_BRANCH");
2323
def tag = System.getenv("TRAVIS_TAG");
2424
def useSigning = "master".equals(branch) || (!"".equals(tag) && tag.equals(branch)) // tag will be the branch on a tag event for travis

src/main/java/io/nats/client/Nats.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public class Nats {
7272
/**
7373
* Current version of the library - {@value #CLIENT_VERSION}
7474
*/
75-
public static final String CLIENT_VERSION = "2.6.5";
75+
public static final String CLIENT_VERSION = "2.6.6";
7676

7777
/**
7878
* Current language of the library - {@value #CLIENT_LANGUAGE}

0 commit comments

Comments
 (0)