Skip to content

Commit

Permalink
Start 2.18.0 (#1139)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf authored May 13, 2024
1 parent 70ee0a8 commit 86ac626
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion 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.17.6   **Current Snapshot**: 2.17.7-SNAPSHOT
**Current Release**: 2.17.7   **Current Snapshot**: 2.18.0-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 @@ -45,6 +45,18 @@ Check out the [ServiceExample](src/examples/java/io/nats/examples/service/Servic

### Versions Specific Notes

#### Version 2.18.0 (AKA 2.17.7)

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.

Even if just one api is newly added, semver requires that we bump the minor version. The `forceReconnect` api
is an example of one api being added to the Connection interface. It should have resulted in a minor version bump.

Going forward, when a release contains only bug fixes, it's appropriate to simply bump the patch.
But if an api is added, even one, then the minor version will be bumped.

#### Version 2.17.4 Core Improvements

This release was full of core improvements which improve use of more asynchronous behaviors including
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.17.7"
def jarVersion = "2.18.0"

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

0 comments on commit 86ac626

Please sign in to comment.