diff --git a/README.md b/README.md
index 44f1d6707..7bca604ac 100644
--- a/README.md
+++ b/README.md
@@ -77,9 +77,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.15.5/jnats-2.15.5.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.5/jnats-2.15.5.jar).
+You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.6/jnats-2.15.6.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.6/jnats-2.15.6.jar).
-The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.5/jnats-2.15.5-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.5/jnats-2.15.5-examples.jar).
+The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.6/jnats-2.15.6-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.6/jnats-2.15.6-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).
@@ -89,7 +89,7 @@ The NATS client is available in the Maven central repository, and can be importe
```groovy
dependencies {
- implementation 'io.nats:jnats:2.15.5'
+ implementation 'io.nats:jnats:2.15.6'
}
```
@@ -115,7 +115,7 @@ repositories {
}
dependencies {
- implementation 'io.nats:jnats:2.15.5-SNAPSHOT'
+ implementation 'io.nats:jnats:2.15.6-SNAPSHOT'
}
```
@@ -127,7 +127,7 @@ The NATS client is available on the Maven central repository, and can be importe
io.nats
jnats
- 2.15.5
+ 2.15.6
```
@@ -161,7 +161,7 @@ If you need a snapshot version, you must enable snapshots and change your depend
io.nats
jnats
- 2.15.5-SNAPSHOT
+ 2.15.6-SNAPSHOT
```
diff --git a/build.gradle b/build.gradle
index 677266b2f..ef6855c65 100644
--- a/build.gradle
+++ b/build.gradle
@@ -17,7 +17,7 @@ plugins {
// src/main/java/io/nats/client/Nats.java
// src/main/java/io/nats/client/package-info.java
// CHANGELOG.md
-def jarVersion = "2.15.5"
+def jarVersion = "2.15.6"
def isRelease = System.getenv("BUILD_EVENT") == "release"
diff --git a/src/examples/java/io/nats/examples/README.md b/src/examples/java/io/nats/examples/README.md
index 341c173f7..487f30bfa 100644
--- a/src/examples/java/io/nats/examples/README.md
+++ b/src/examples/java/io/nats/examples/README.md
@@ -90,7 +90,7 @@ You can also just insert some code before the arguments are processed to set the
In the examples, the usage will show `java -cp ...` Make sure you add both the client library and examples into the classpath. For example:
```bash
-java -cp build/libs/jnats-2.15.5-SNAPSHOT.jar:build/libs/jnats-2.15.5-SNAPSHOT-examples.jar io.nats.examples.NatsPub nats://localhost:4222 test "hello world"
+java -cp build/libs/jnats-2.15.6-SNAPSHOT.jar:build/libs/jnats-2.15.6-SNAPSHOT-examples.jar io.nats.examples.NatsPub nats://localhost:4222 test "hello world"
```
### Some examples depend on others
@@ -108,7 +108,7 @@ java -Djavax.net.ssl.keyStore=src/test/resources/keystore.jks -Djavax.net.ssl.ke
To run with the completely unverified client:
```bash
-java -cp build/libs/jnats-2.15.5-SNAPSHOT.jar:build/libs/jnats-2.15.5-SNAPSHOT-examples.jar io.nats.examples.NatsSub opentls://localhost:4443 test 3
+java -cp build/libs/jnats-2.15.6-SNAPSHOT.jar:build/libs/jnats-2.15.6-SNAPSHOT-examples.jar io.nats.examples.NatsSub opentls://localhost:4443 test 3
```
There are a set tls configuration for the server in the test files that can be used to run the NATS server.