Skip to content

Commit ed1995a

Browse files
authored
Merge pull request #363 from EasyPost/v8.4.0
chore: prep v8.4.0
2 parents e03a9bf + a7f8f7d commit ed1995a

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
javaversion: ["8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23"]
14+
javaversion: ["8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25"]
1515
steps:
1616
- uses: actions/checkout@v5
1717
- uses: actions/setup-java@v5
1818
with:
1919
distribution: "zulu"
20-
java-version: "21" # Always use the most recent LTS JDK for building
20+
java-version: "25" # Always use the most recent LTS JDK for building
2121
cache: "maven"
2222
- name: Install dependencies
2323
run: make install
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/setup-java@v5
3939
with:
4040
distribution: "zulu"
41-
java-version: "21" # Always use the most recent LTS JDK for building
41+
java-version: "25" # Always use the most recent LTS JDK for building
4242
cache: "maven"
4343
- name: Install dependencies
4444
run: make install
@@ -66,7 +66,7 @@ jobs:
6666
- uses: actions/setup-java@v5
6767
with:
6868
distribution: "zulu"
69-
java-version: "21" # Always use the most recent LTS JDK for building
69+
java-version: "25" # Always use the most recent LTS JDK for building
7070
cache: "maven"
7171
- name: Install checkstyle and style guide
7272
run: make install-checkstyle
@@ -85,7 +85,7 @@ jobs:
8585
- uses: actions/setup-java@v5
8686
with:
8787
distribution: "zulu"
88-
java-version: "21" # Always use the most recent LTS JDK for building
88+
java-version: "25" # Always use the most recent LTS JDK for building
8989
cache: "maven"
9090
- name: Install Dependencies
9191
run: make install

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/setup-java@v4
3737
with:
3838
distribution: "zulu"
39-
java-version: "21" # Always use the most recent LTS JDK for building
39+
java-version: "25" # Always use the most recent LTS JDK for building
4040
server-id: "ossrh"
4141
# define environmental variable names
4242
server-username: MAVEN_USERNAME

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CHANGELOG
22

3-
## Next Release
3+
## v8.4.0 (2025-11-24)
44

55
- Adds the following functions:
66
- `embeddable.createSession`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add this to your project's POM:
1616
<dependency>
1717
<groupId>com.easypost</groupId>
1818
<artifactId>easypost-api-client</artifactId>
19-
<version>8.3.0</version>
19+
<version>8.4.0</version>
2020
</dependency>
2121
```
2222

@@ -25,7 +25,7 @@ Add this to your project's POM:
2525
Add this to your project's build file:
2626

2727
```groovy
28-
implementation "com.easypost:easypost-api-client:8.3.0"
28+
implementation "com.easypost:easypost-api-client:8.4.0"
2929
```
3030

3131
**NOTE:** [Google Gson](http://code.google.com/p/google-gson/) is required.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.3.0
1+
8.4.0

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.easypost</groupId>
77
<artifactId>easypost-api-client</artifactId>
88

9-
<version>8.3.0</version>
9+
<version>8.4.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>com.easypost:easypost-api-client</name>
@@ -82,7 +82,7 @@
8282
<dependency>
8383
<groupId>org.projectlombok</groupId>
8484
<artifactId>lombok</artifactId>
85-
<version>1.18.36</version>
85+
<version>1.18.42</version>
8686
<scope>provided</scope>
8787
</dependency>
8888
</dependencies>
@@ -257,7 +257,7 @@
257257
<path>
258258
<groupId>org.projectlombok</groupId>
259259
<artifactId>lombok</artifactId>
260-
<version>1.18.36</version>
260+
<version>1.18.42</version>
261261
</path>
262262
</annotationProcessorPaths>
263263
</configuration>

0 commit comments

Comments
 (0)