From 87cdd4550b629df301ceafbd0ecde38100441a5e Mon Sep 17 00:00:00 2001 From: Scott Fauerbach Date: Thu, 14 Nov 2024 17:59:01 -0500 Subject: [PATCH] Start 2.20.5 (#1249) * Start 2.20.5 * Start 2.20.5 * Start 2.20.5 --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ README.md | 6 +++--- build.gradle | 2 +- 3 files changed, 30 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5977be81d..1c87e6493 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Change Log +## 2.20.4 + +### Core +* Don't flush after the request from publishAsync calls #1220 @scottf + +### JetStream +* Easier access to timeout in JetStream implementations #1236 @scottf + +### Object Store +* Minor object store improvement - complete faster #1237 @scottf + +### Documentation +* Javadocs Improvements #1221 @roeschter +* Callout external docs and examples #1224 @scottf + +### Tests +* Fixed tests for 2.8.4 regression stream and consumer metadata #1225 @scottf +* Test base code improvements #1240 @scottf + +### Misc +* Add publish of test code jar to builds. #1230 @scottf + +## 2.20.3 + +SKIPPED + ## 2.20.2 ### Core diff --git a/README.md b/README.md index 907d8ab1c..521ab1004 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.20.2   **Current Snapshot**: 2.20.3-SNAPSHOT +**Current Release**: 2.20.4   **Current Snapshot**: 2.20.5-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) @@ -123,9 +123,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.20.2/jnats-2.20.2.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.2/jnats-2.20.2.jar). +You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.4/jnats-2.20.4.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.4/jnats-2.20.4.jar). -The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.2/jnats-2.20.2-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.2/jnats-2.20.2-examples.jar). +The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.4/jnats-2.20.4-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.4/jnats-2.20.4-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 fbf638b28..a54ed6f60 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ plugins { id 'signing' } -def jarVersion = "2.20.4" +def jarVersion = "2.20.5" def isRelease = System.getenv("BUILD_EVENT") == "release" def brn = System.getenv("BRANCH_REF_NAME")