File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
### A [ Java] ( http://java.com ) client for the [ NATS messaging system] ( https://nats.io ) .
6
6
7
- ** Current Release** : 2.17.6   ; ** Current Snapshot** : 2.17.7 -SNAPSHOT
7
+ ** Current Release** : 2.17.7   ; ** Current Snapshot** : 2.18.0 -SNAPSHOT
8
8
9
9
[ ![ License Apache 2] ( https://img.shields.io/badge/License-Apache2-blue.svg )] ( https://www.apache.org/licenses/LICENSE-2.0 )
10
10
[ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/io.nats/jnats/badge.svg )] ( https://maven-badges.herokuapp.com/maven-central/io.nats/jnats )
@@ -45,6 +45,18 @@ Check out the [ServiceExample](src/examples/java/io/nats/examples/service/Servic
45
45
46
46
### Versions Specific Notes
47
47
48
+ #### Version 2.18.0 (AKA 2.17.7)
49
+
50
+ 2.18.0 attempts to start us on the road to properly [ Semantic Version (semver)] ( https://semver.org/ ) .
51
+ In the last few patch releases, there were technically things that should cause a minor version bump,
52
+ but were numbered as a patch.
53
+
54
+ Even if just one api is newly added, semver requires that we bump the minor version. The ` forceReconnect ` api
55
+ is an example of one api being added to the Connection interface. It should have resulted in a minor version bump.
56
+
57
+ Going forward, when a release contains only bug fixes, it's appropriate to simply bump the patch.
58
+ But if an api is added, even one, then the minor version will be bumped.
59
+
48
60
#### Version 2.17.4 Core Improvements
49
61
50
62
This release was full of core improvements which improve use of more asynchronous behaviors including
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ plugins {
13
13
id ' signing'
14
14
}
15
15
16
- def jarVersion = " 2.17.7 "
16
+ def jarVersion = " 2.18.0 "
17
17
18
18
def isRelease = System . getenv(" BUILD_EVENT" ) == " release"
19
19
def brn = System . getenv(" BRANCH_REF_NAME" )
You can’t perform that action at this time.
0 commit comments