diff --git a/README.md b/README.md index 960a5b4..358a009 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ Run the [NATS messaging system](https://nats.io) Server from your Java code. -![3.0.2](https://img.shields.io/badge/Current_Release-3.0.2-27AAE0?style=for-the-badge) -![3.0.3](https://img.shields.io/badge/Current_Snapshot-3.0.3--SNAPSHOT-27AAE0?style=for-the-badge) +![3.1.0](https://img.shields.io/badge/Current_Release-3.1.0-27AAE0?style=for-the-badge) +![3.1.1](https://img.shields.io/badge/Current_Snapshot-3.1.1--SNAPSHOT-27AAE0?style=for-the-badge) [![Build Main Badge](https://github.com/nats-io/java-nats-server-runner/actions/workflows/build-main.yml/badge.svg?event=push)](https://github.com/nats-io/java-nats-server-runner/actions/workflows/build-main.yml) [![Coverage Status](https://coveralls.io/repos/github/nats-io/java-nats-server-runner/badge.svg?branch=main)](https://coveralls.io/github/nats-io/java-nats-server-runner?branch=main) @@ -100,7 +100,7 @@ The examples shown use the Jdk 8 version. To use other versions, change the arti ```groovy dependencies { - implementation 'io.nats:jnats-server-runner:3.0.3' + implementation 'io.nats:jnats-server-runner:3.1.0' } ``` @@ -126,7 +126,7 @@ repositories { } dependencies { - implementation 'io.nats:jnats-server-runner:3.0.4-SNAPSHOT' + implementation 'io.nats:jnats-server-runner:3.1.1-SNAPSHOT' } ``` @@ -136,7 +136,7 @@ dependencies { io.nats jnats-server-runner - 3.0.3 + 3.1.0 ``` @@ -170,7 +170,7 @@ If you need a snapshot version, you must enable snapshots and change your depend io.nats jnats-server-runner - 3.0.4-SNAPSHOT + 3.1.1-SNAPSHOT ``` diff --git a/build.gradle b/build.gradle index 9f6d081..db40974 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ plugins { id("signing") } -def jarVersion = "3.1.0" +def jarVersion = "3.1.1" group = 'io.nats' def isRelease = System.getenv("BUILD_EVENT") == "release"