Skip to content

Commit 92e6ab7

Browse files
committed
Start 3.0.4
1 parent 2dd76b4 commit 92e6ab7

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,11 @@ collection of random bytes called a nonce.
6666

6767
### JDK Version
6868

69-
This project uses Java 17 Language Level api, but builds with Java 17, Java 21 and Java 25, so creates 3 different artifacts per component.
70-
All have the same group id `io.nats.nkeys`, and the same version but have different artifact names.
71-
69+
This project uses Java 17 Language Level api,
70+
but builds with Java 17, Java 21 and Java 25,
71+
so creates 3 different artifacts per component.
72+
All have the same group id `io.nats.nkeys`,
73+
and the same version but have different artifact names.
7274

7375

7476
| Component | JDK 17 | JDK 21 | JDK 25 |
@@ -81,15 +83,17 @@ All have the same group id `io.nats.nkeys`, and the same version but have differ
8183

8284
The NATS client is available in the Maven central repository,
8385
and can be imported as a standard dependency in your `build.gradle` or `pom.xml` file,
84-
The examples shown use the jdk 17 version. To use the JDK 21 or 25 version just change the artifact id.
85-
The _regular_ and _lts_ libraries automatically depend on the _core_ of the same JDK.
86+
The examples show use of the jdk 17 version.
87+
* To use the JDK 21 or 25 version just change the artifact id.
88+
* To use the LTS instead of the Regular version, change regular to lts
89+
90+
The **regular** and **lts** libraries automatically depend on the **core** of the same JDK.
8691

8792
#### Gradle
8893

8994
```groovy
9095
dependencies {
91-
implementation 'io.nats.nkeys:core-jdk17:3.0.2'
92-
implementation 'io.nats.nkeys:regular-jdk17:3.0.2'
96+
implementation 'io.nats.nkeys:regular-jdk17:3.0.3'
9397
}
9498
```
9599

@@ -108,12 +112,9 @@ repositories {
108112

109113
```xml
110114
<dependency>
111-
<groupId>io.nats.nkeys</groupId>
112-
<artifactId>core-jdk17</artifactId>
113-
<version>3.0.2</version>
114115
<groupId>io.nats.nkeys</groupId>
115116
<artifactId>regular-jdk17</artifactId>
116-
<version>3.0.2</version>
117+
<version>3.0.3</version>
117118
</dependency>
118119
```
119120

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
id("signing")
1111
}
1212

13-
def jarVersion = "3.0.3"
13+
def jarVersion = "3.0.4"
1414
group = 'io.nats.nkeys'
1515

1616
def isRelease = System.getenv("BUILD_EVENT") == "release"

fips/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
id("signing")
1111
}
1212

13-
def jarVersion = "3.0.3"
13+
def jarVersion = "3.0.4"
1414
group = 'io.nats.nkeys'
1515

1616
def isRelease = System.getenv("BUILD_EVENT") == "release"

lts/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
id("signing")
1111
}
1212

13-
def jarVersion = "3.0.3"
13+
def jarVersion = "3.0.4"
1414
group = 'io.nats.nkeys'
1515

1616
def isRelease = System.getenv("BUILD_EVENT") == "release"

regular/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
id("signing")
1111
}
1212

13-
def jarVersion = "3.0.3"
13+
def jarVersion = "3.0.4"
1414
group = 'io.nats.nkeys'
1515

1616
def isRelease = System.getenv("BUILD_EVENT") == "release"

0 commit comments

Comments
 (0)