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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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'
}
```

Expand All @@ -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'
}
```

Expand All @@ -136,7 +136,7 @@ dependencies {
<dependency>
<groupId>io.nats</groupId>
<artifactId>jnats-server-runner</artifactId>
<version>3.0.3</version>
<version>3.1.0</version>
</dependency>
```

Expand Down Expand Up @@ -170,7 +170,7 @@ If you need a snapshot version, you must enable snapshots and change your depend
<dependency>
<groupId>io.nats</groupId>
<artifactId>jnats-server-runner</artifactId>
<version>3.0.4-SNAPSHOT</version>
<version>3.1.1-SNAPSHOT</version>
</dependency>
```

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 = "3.1.0"
def jarVersion = "3.1.1"
group = 'io.nats'

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