Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Change Log

## 2.20.2

### Core
* Publishing plus immediate flush #1211 @scottf
* When interrupted call interrupt #1212 @MauriceVanVeen
* Interrupt fine tuning #1214 @scottf
* Run loops check the interrupted flag #1215 @scottf
* Tuning futures used for internal tracking #1216 @scottf
* Fix cleanResponses must handle cleaning up cancelled future #1218 @MauriceVanVeen

## 2.20.1

### Core
* Catch errors in Dispatchers and log #1200 @MauriceVanVeen
* During forceReconnect, ensure reader/writer is stopped before continuing #1203 @MauriceVanVeen @scottf
* While handleCommunicationIssue, closeSocket should use reconnect impl otherwise tryingToConnect will guard #1206 @MauriceVanVeen @scottf
* Remove redundant writer.flushBuffer() call #1207 @MauriceVanVeen

### Documentation
* Jetstream Usage #1193 @roeschter
* Recommended (new) APIs and more example code #1191 @roeschter

## 2.20.0

### Core
Expand Down
6 changes: 3 additions & 3 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.20.1   **Current Snapshot**: 2.20.2-SNAPSHOT
**Current Release**: 2.20.2   **Current Snapshot**: 2.20.3-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 @@ -122,9 +122,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.1/jnats-2.20.1.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.1/jnats-2.20.1.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).

The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.1/jnats-2.20.1-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.1/jnats-2.20.1-examples.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).

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.20.2"
def jarVersion = "2.20.3"

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