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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## 2.26.2

### Core
* Update the status before tearing the socket down in closeSocket #1609 @scottf

### JetStream
* Fix regression of PublishOptions getStreamTimeout #1611 @utamas @scottf

### Miscellaneous
* test user pass with special characters fixed to run on all platforms #1605 @scottf
* Connection Listener Stale State Tests #1607 @scottf
* Fix Test Flappers #1612 @scottf

## 2.26.1

### Core
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

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

![2.26.1](https://img.shields.io/badge/Current_Release-2.26.1-27AAE0?style=for-the-badge)
![2.26.2](https://img.shields.io/badge/Current_Snapshot-2.26.2--SNAPSHOT-27AAE0?style=for-the-badge)
![2.26.2](https://img.shields.io/badge/Current_Release-2.26.2-27AAE0?style=for-the-badge)
![2.26.3](https://img.shields.io/badge/Current_Snapshot-2.26.3--SNAPSHOT-27AAE0?style=for-the-badge)

[![Build Main Badge](https://github.com/nats-io/nats.java/actions/workflows/build-main.yml/badge.svg?event=push)](https://github.com/nats-io/nats.java/actions/workflows/build-main.yml)
[![Coverage Status](https://coveralls.io/repos/github/nats-io/nats.java/badge.svg?branch=main)](https://coveralls.io/github/nats-io/nats.java?branch=main)
Expand Down Expand Up @@ -325,17 +325,17 @@ See [Building From Source](#building-from-source) for details on building the li

### Downloading the Jar

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

The examples are available at [jnats-2.26.1-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.26.1/jnats-2.26.1-examples.jar).
The examples are available at [jnats-2.26.2-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.26.2/jnats-2.26.2-examples.jar).

### Using Gradle

The NATS client is available in the Maven central repository, and can be imported as a standard dependency in your `build.gradle` file:

```groovy
dependencies {
implementation 'io.nats:jnats:2.26.1'
implementation 'io.nats:jnats:2.26.2'
}
```

Expand All @@ -361,7 +361,7 @@ repositories {
}

dependencies {
implementation 'io.nats:jnats:2.26.2-SNAPSHOT'
implementation 'io.nats:jnats:2.26.3-SNAPSHOT'
}
```

Expand All @@ -373,7 +373,7 @@ The NATS client is available on the Maven Central Repository and can be imported
<dependency>
<groupId>io.nats</groupId>
<artifactId>jnats</artifactId>
<version>2.26.1</version>
<version>2.26.2</version>
</dependency>
```

Expand Down Expand Up @@ -407,7 +407,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.26.2-SNAPSHOT</version>
<version>2.26.3-SNAPSHOT</version>
</dependency>
```

Expand Down Expand Up @@ -1595,7 +1595,7 @@ and the example jar is in `build/libs`
Once the Uber jar is built, you can run a class with a main using it's fully qualified class name. As an example:

```bash
java -cp build/libs/java-nats-2.26.2-SNAPSHOT-uber.jar io.nats.examples.NatsSub
java -cp build/libs/java-nats-2.26.3-SNAPSHOT-uber.jar io.nats.examples.NatsSub
```

## License
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
id("signing")
}

def jarVersion = "2.26.2"
def jarVersion = "2.26.3"
group = 'io.nats'

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