Skip to content

Commit

Permalink
Start 2.19.1 (#1158)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf authored Jun 6, 2024
1 parent 1d5c749 commit b4c91ef
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## 2.19.0
### Core
Improve socket close behavior #1155 @scottf

### Tests
Additional NKey Tests #1154 @scottf

### Misc
Experimental Retrier utility removed to its own project/repo #1153 @scottf

## 2.18.1
#### Core
* General Retry Functionality #1145 @scottf
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### A [Java](http://java.com) client for the [NATS messaging system](https://nats.io).

**Current Release**: 2.18.1   **Current Snapshot**: 2.18.2-SNAPSHOT
**Current Release**: 2.19.0   **Current Snapshot**: 2.19.1-SNAPSHOT

[![License Apache 2](https://img.shields.io/badge/License-Apache2-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.nats/jnats/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.nats/jnats)
Expand Down Expand Up @@ -47,7 +47,7 @@ Check out the [ServiceExample](src/examples/java/io/nats/examples/service/Servic

#### Version 2.18.0 (AKA 2.17.7)

2.18.1 attempts to start us on the road to properly [Semantic Version (semver)](https://semver.org/).
2.18.0 attempts to start us on the road to properly [Semantic Version (semver)](https://semver.org/).
In the last few patch releases, there were technically things that should cause a minor version bump,
but were numbered as a patch.

Expand Down Expand Up @@ -434,9 +434,9 @@ Replace `{major.minor.patch}` with the correct version in the examples.

### Downloading the Jar

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

The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.18.1/jnats-2.18.1-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.18.1/jnats-2.18.1-examples.jar).
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.19.0/jnats-2.19.0-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.19.0/jnats-2.19.0-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 Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
id 'signing'
}

def jarVersion = "2.19.0"
def jarVersion = "2.19.1"

def isRelease = System.getenv("BUILD_EVENT") == "release"
def brn = System.getenv("BRANCH_REF_NAME")
Expand Down

0 comments on commit b4c91ef

Please sign in to comment.