Skip to content

Commit bee8a8c

Browse files
author
Stephen Asbury
authored
Merge pull request #235 from nats-io/2.4.6
Fixed versioning to 2.4.6
2 parents d689588 + d1487aa commit bee8a8c

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Change Log
33

4-
## Version 2.4.5
4+
## Version 2.4.5 & 2.4.6
55

66
* Clean up for rename to nats.java
77

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A [Java](http://java.com) client for the [NATS messaging system](https://nats.io
1212

1313
## A Note on Versions
1414

15-
The NATS server renamed itself from gnatsd to nats-server around 2.4.4. This and other files try to use the new names, but some underlying code may change over several versions. If you are building yourself, please keep an eye out for issues and report them.
15+
The NATS server renamed itself from gnatsd to nats-server around 2.4.6. This and other files try to use the new names, but some underlying code may change over several versions. If you are building yourself, please keep an eye out for issues and report them.
1616

1717
This is version 2.1 of the java-nats library. This version is a ground up rewrite of the original library. Part of the goal of this re-write was to address the excessive use of threads, we created a Dispatcher construct to allow applications to control thread creation more intentionally. This version also removes all non-JDK runtime dependencies.
1818

@@ -38,9 +38,9 @@ The java-nats client is provided in a single jar file, with a single external de
3838

3939
### Downloading the Jar
4040

41-
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.4.4/jnats-2.4.4.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.4.4/jnats-2.4.4.jar).
41+
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.4.6/jnats-2.4.6.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.4.6/jnats-2.4.6.jar).
4242

43-
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.4.4/jnats-2.4.4-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.4.4/jnats-2.4.4-examples.jar).
43+
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.4.6/jnats-2.4.6-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.4.6/jnats-2.4.6-examples.jar).
4444

4545
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).
4646

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

5151
```groovy
5252
dependencies {
53-
implementation 'io.nats:jnats:2.4.4'
53+
implementation 'io.nats:jnats:2.4.6'
5454
}
5555
```
5656

@@ -76,7 +76,7 @@ The NATS client is available on the Maven central repository, and can be importe
7676
<dependency>
7777
<groupId>io.nats</groupId>
7878
<artifactId>jnats</artifactId>
79-
<version>2.4.4</version>
79+
<version>2.4.6</version>
8080
</dependency>
8181
```
8282

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 = 4
17-
def versionPatch = 4
17+
def versionPatch = 6
1818
def versionModifier = ""
19-
def jarVersion = "2.4.4"
19+
def jarVersion = "2.4.6"
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.4.4";
75+
public static final String CLIENT_VERSION = "2.4.6";
7676

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

0 commit comments

Comments
 (0)