Skip to content

Commit

Permalink
Start 2.18.1 (#1068)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf authored Jan 30, 2024
1 parent 7ae22fd commit 315142f
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/branch-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
GODEBUG: x509sha1=1
steps:
- name: Setup JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
- name: Setup GO
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: '1.21.4'
- name: Install Nats Server
Expand All @@ -39,7 +39,7 @@ jobs:
rm -rf nats-server
nats-server -v
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build and Test
run: chmod +x gradlew && ./gradlew clean test jacocoTestReport coveralls
- name: Verify Javadoc
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
GODEBUG: x509sha1=1
steps:
- name: Setup JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
- name: Setup GO
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: '1.21.4'
- name: Install Nats Server
Expand All @@ -40,7 +40,7 @@ jobs:
rm -rf nats-server
nats-server -v
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build and Test
run: chmod +x gradlew && ./gradlew clean test jacocoTestReport coveralls
- name: Verify Javadoc
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
GODEBUG: x509sha1=1
steps:
- name: Setup JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
- name: Setup GO
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: '1.21.4'
- name: Install Nats Server
Expand All @@ -39,7 +39,7 @@ jobs:
rm -rf nats-server
nats-server -v
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build and Test
run: chmod +x gradlew && ./gradlew clean test jacocoTestReport coveralls
- name: Verify Javadoc
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
GODEBUG: x509sha1=1
steps:
- name: Setup JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
- name: Setup GO
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: '1.21.4'
- name: Install Nats Server
Expand All @@ -40,7 +40,7 @@ jobs:
rm -rf nats-server
nats-server -v
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build and Test
run: chmod +x gradlew && ./gradlew clean test
- name: Verify, Sign and Publish Release
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 2.17.3

#### Core
* Socket Data Port with Manual Write Timeout #1064 @scottf
* Provide implementation instead of empty trust manager check #1066 @scottf

#### Test
* Reconnect On Connect Unit Test #1062 #1063 @scottf

#### Doc
* Document Message Immutability Headers Bug #1059 @scottf

## 2.17.2

Robustness and recovery
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
id 'signing'
}

def jarVersion = "2.17.3"
def jarVersion = "2.18.1"

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

0 comments on commit 315142f

Please sign in to comment.