From 429f192ed09eb04dd1a50b63671e054ae46d3a5e Mon Sep 17 00:00:00 2001 From: Scott Fauerbach Date: Thu, 1 Feb 2024 12:12:49 -0500 Subject: [PATCH] Start 2.17.4 (#1072) --- .github/workflows/branch-snapshot.yml | 2 +- .github/workflows/build-main.yml | 2 +- .github/workflows/build-pr.yml | 2 +- .github/workflows/build-release.yml | 2 +- README.md | 2 +- build.gradle | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/branch-snapshot.yml b/.github/workflows/branch-snapshot.yml index 3b52862e4..a82a73c60 100644 --- a/.github/workflows/branch-snapshot.yml +++ b/.github/workflows/branch-snapshot.yml @@ -17,7 +17,7 @@ jobs: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} GODEBUG: x509sha1=1 steps: - - name: Setup JDK 8 + - name: Setup JDK uses: actions/setup-java@v4 with: java-version: '8' diff --git a/.github/workflows/build-main.yml b/.github/workflows/build-main.yml index ff1524646..3e998df11 100644 --- a/.github/workflows/build-main.yml +++ b/.github/workflows/build-main.yml @@ -18,7 +18,7 @@ jobs: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} GODEBUG: x509sha1=1 steps: - - name: Setup JDK 8 + - name: Setup JDK uses: actions/setup-java@v4 with: java-version: '8' diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 5abfb053e..021c95f06 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -17,7 +17,7 @@ jobs: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} GODEBUG: x509sha1=1 steps: - - name: Setup JDK 8 + - name: Setup JDK uses: actions/setup-java@v4 with: java-version: '8' diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index fe5fda5f0..d5f2c7a52 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -18,7 +18,7 @@ jobs: SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} GODEBUG: x509sha1=1 steps: - - name: Setup JDK 8 + - name: Setup JDK uses: actions/setup-java@v4 with: java-version: '8' diff --git a/README.md b/README.md index 55ad20ed1..289fdfb23 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ### A [Java](http://java.com) client for the [NATS messaging system](https://nats.io). -**Current Release**: 2.17.3   **Current Snapshot**: 2.18.1-SNAPSHOT +**Current Release**: 2.17.3   **Current Snapshot**: 2.17.4-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) diff --git a/build.gradle b/build.gradle index ec2383178..d07b01a3f 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ plugins { id 'signing' } -def jarVersion = "2.18.1" +def jarVersion = "2.17.4" def isRelease = System.getenv("BUILD_EVENT") == "release" def bs = System.getenv("BRANCH_SNAPSHOT")