Skip to content

Commit

Permalink
bump version to 2.15.3 for release (#656)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf authored Jun 6, 2022
1 parent 774d168 commit fde09ed
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2/jnats-2.15.2.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.2/jnats-2.15.2.jar).
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.3/jnats-2.15.3.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.3/jnats-2.15.3.jar).

The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.2/jnats-2.15.2-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.2/jnats-2.15.2-examples.jar).
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.3/jnats-2.15.3-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.15.3/jnats-2.15.3-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 @@ -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.2'
implementation 'io.nats:jnats:2.15.3'
}
```

Expand All @@ -115,7 +115,7 @@ repositories {
}
dependencies {
implementation 'io.nats:jnats:2.15.2-SNAPSHOT'
implementation 'io.nats:jnats:2.15.3-SNAPSHOT'
}
```

Expand All @@ -127,7 +127,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.15.2</version>
<version>2.15.3</version>
</dependency>
```

Expand Down Expand Up @@ -161,7 +161,7 @@ If you need a snapshot version, you must enable snapshots and change your depend
<dependency>
<groupId>io.nats</groupId>
<artifactId>jnats</artifactId>
<version>2.15.2-SNAPSHOT</version>
<version>2.15.3-SNAPSHOT</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.2"
def jarVersion = "2.15.3"

def isRelease = System.getenv("BUILD_EVENT") == "release"

Expand Down
4 changes: 2 additions & 2 deletions src/examples/java/io/nats/examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <program> -cp <classpath> ...` Make sure you add both the client library and examples into the classpath. For example:

```bash
java -cp build/libs/jnats-2.15.2-SNAPSHOT.jar:build/libs/jnats-2.15.2-SNAPSHOT-examples.jar io.nats.examples.NatsPub nats://localhost:4222 test "hello world"
java -cp build/libs/jnats-2.15.3-SNAPSHOT.jar:build/libs/jnats-2.15.3-SNAPSHOT-examples.jar io.nats.examples.NatsPub nats://localhost:4222 test "hello world"
```

### Some examples depend on others
Expand All @@ -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.2-SNAPSHOT.jar:build/libs/jnats-2.15.2-SNAPSHOT-examples.jar io.nats.examples.NatsSub opentls://localhost:4443 test 3
java -cp build/libs/jnats-2.15.3-SNAPSHOT.jar:build/libs/jnats-2.15.3-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.
Expand Down

0 comments on commit fde09ed

Please sign in to comment.