From b4c91ef88fb0df18f9ff61106d3a2920751ede20 Mon Sep 17 00:00:00 2001 From: Scott Fauerbach Date: Thu, 6 Jun 2024 13:58:47 -0400 Subject: [PATCH] Start 2.19.1 (#1158) --- CHANGELOG.md | 10 ++++++++++ README.md | 8 ++++---- build.gradle | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73d1aac65..3407ea5cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 77b243ffe..ee783c0be 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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. @@ -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). diff --git a/build.gradle b/build.gradle index a951474f4..34137ae33 100644 --- a/build.gradle +++ b/build.gradle @@ -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")