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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
javaversion: ["8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23"]
javaversion: ["8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25"]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-java@v5
with:
distribution: "zulu"
java-version: "21" # Always use the most recent LTS JDK for building
java-version: "25" # Always use the most recent LTS JDK for building
cache: "maven"
- name: Install dependencies
run: make install
Expand All @@ -38,7 +38,7 @@ jobs:
- uses: actions/setup-java@v5
with:
distribution: "zulu"
java-version: "21" # Always use the most recent LTS JDK for building
java-version: "25" # Always use the most recent LTS JDK for building
cache: "maven"
- name: Install dependencies
run: make install
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- uses: actions/setup-java@v5
with:
distribution: "zulu"
java-version: "21" # Always use the most recent LTS JDK for building
java-version: "25" # Always use the most recent LTS JDK for building
cache: "maven"
- name: Install checkstyle and style guide
run: make install-checkstyle
Expand All @@ -85,7 +85,7 @@ jobs:
- uses: actions/setup-java@v5
with:
distribution: "zulu"
java-version: "21" # Always use the most recent LTS JDK for building
java-version: "25" # Always use the most recent LTS JDK for building
cache: "maven"
- name: Install Dependencies
run: make install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: "zulu"
java-version: "21" # Always use the most recent LTS JDK for building
java-version: "25" # Always use the most recent LTS JDK for building
server-id: "ossrh"
# define environmental variable names
server-username: MAVEN_USERNAME
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

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

- Adds the following functions:
- `embeddable.createSession`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add this to your project's POM:
<dependency>
<groupId>com.easypost</groupId>
<artifactId>easypost-api-client</artifactId>
<version>8.3.0</version>
<version>8.4.0</version>
</dependency>
```

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

```groovy
implementation "com.easypost:easypost-api-client:8.3.0"
implementation "com.easypost:easypost-api-client:8.4.0"
```

**NOTE:** [Google Gson](http://code.google.com/p/google-gson/) is required.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.3.0
8.4.0
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.easypost</groupId>
<artifactId>easypost-api-client</artifactId>

<version>8.3.0</version>
<version>8.4.0</version>
<packaging>jar</packaging>

<name>com.easypost:easypost-api-client</name>
Expand Down Expand Up @@ -82,7 +82,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.36</version>
<version>1.18.42</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -257,7 +257,7 @@
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.36</version>
<version>1.18.42</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand Down
Loading