Skip to content

Commit 8b52053

Browse files
author
Stephen Asbury
committed
moved to 2.6.2 to replace packages with jdk 8 build
Fixes #267 Fixes #266
1 parent 822841d commit 8b52053

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

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

22
# Change Log
33

4+
## Version 2.6.2
5+
6+
* [FIXED] - problem with jars being built with jdk 11
7+
48
## Version 2.6.1
59

610
* [FIXED] - #263 - Added server URLs to connect exception (not to auth exception)

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.1/jnats-2.6.1.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.1/jnats-2.6.1.jar).
55+
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.2/jnats-2.6.2.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.2/jnats-2.6.2.jar).
5656

57-
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.1/jnats-2.6.1-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.1/jnats-2.6.1-examples.jar).
57+
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.2/jnats-2.6.2-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.2/jnats-2.6.2-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.1'
67+
implementation 'io.nats:jnats:2.6.2'
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.1</version>
93+
<version>2.6.2</version>
9494
</dependency>
9595
```
9696

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ plugins {
1414
// Be sure to update Nats.java with the latest version, the change log and the package-info.java
1515
def versionMajor = 2
1616
def versionMinor = 6
17-
def versionPatch = 1
17+
def versionPatch = 2
1818
def versionModifier = ""
19-
def jarVersion = "2.6.1"
19+
def jarVersion = "2.6.2"
2020
def branch = System.getenv("TRAVIS_BRANCH");
2121

2222
def getVersionName = { ->

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.1";
75+
public static final String CLIENT_VERSION = "2.6.2";
7676

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

0 commit comments

Comments
 (0)