Skip to content

Commit

Permalink
Updated for version 2.6.8 (#313)
Browse files Browse the repository at this point in the history
* Updated for version 2.6.8
  • Loading branch information
sasbury authored May 26, 2020
1 parent 5a90bfc commit 507490d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@

# Change Log

## Version 2.6.8

* [FIXED] - #309 - Removed some debug printf statements
* [CHANGED] - Allow disable reconnect buffer by using size of zero
* [CHANGED] - Added option to set the max unsent size at the writer and fail or discard messages
* [CHANGED] - Updated build.gradle to not fail if TRAVIS_BRANCH isn't set

## Version 2.6.6

* [FIXED] - #274 - Added a check to prevent double event notification
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ The java-nats client is provided in a single jar file, with a single external de

### Downloading the Jar

You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.7/jnats-2.6.7.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.7/jnats-2.6.7.jar).
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.8/jnats-2.6.8.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.8/jnats-2.6.8.jar).

The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.7/jnats-2.6.7-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.7/jnats-2.6.7-examples.jar).
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.8/jnats-2.6.8-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.6.8/jnats-2.6.8-examples.jar).

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

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

```groovy
dependencies {
implementation 'io.nats:jnats:2.6.7'
implementation 'io.nats:jnats:2.6.8'
}
```

Expand All @@ -90,7 +90,7 @@ The NATS client is available on the Maven central repository, and can be importe
<dependency>
<groupId>io.nats</groupId>
<artifactId>jnats</artifactId>
<version>2.6.7</version>
<version>2.6.8</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ plugins {
// Be sure to update Nats.java with the latest version, the change log and the package-info.java
def versionMajor = 2
def versionMinor = 6
def versionPatch = 7
def versionPatch = 8
def versionModifier = ""
def jarVersion = "2.6.7"
def jarVersion = "2.6.8"
def branch = System.getenv("TRAVIS_BRANCH") != null ? System.getenv("TRAVIS_BRANCH") : "";
def tag = System.getenv("TRAVIS_TAG") != null ? System.getenv("TRAVIS_TAG") : "";
def useSigning = "master".equals(branch) || (!"".equals(tag) && tag.equals(branch)) // tag will be the branch on a tag event for travis
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/nats/client/Nats.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class Nats {
/**
* Current version of the library - {@value #CLIENT_VERSION}
*/
public static final String CLIENT_VERSION = "2.6.7";
public static final String CLIENT_VERSION = "2.6.8";

/**
* Current language of the library - {@value #CLIENT_LANGUAGE}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/nats/client/impl/NatsConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -1825,4 +1825,4 @@ boolean isAuthenticationError(String err) {
err = err.toLowerCase();
return err.startsWith("user authentication") || err.contains("authorization violation");
}
}
}

1 comment on commit 507490d

@m4ce
Copy link

@m4ce m4ce commented on 507490d May 28, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks guys for making this release!

Please sign in to comment.