Skip to content

Commit 2a789e7

Browse files
committed
chore: prep v8.4.1
1 parent 7cdc33e commit 2a789e7

File tree

5 files changed

+9
-22
lines changed

5 files changed

+9
-22
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## v8.4.1 (2025-12-01)
4+
5+
- Adds missing `apiKeys` field to `BaseUser`
6+
- Removes unecessary `SerializedName` entries in `StatelessRate`
7+
38
## v8.4.0 (2025-11-24)
49

510
- Adds the following functions:

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.4.0</version>
19+
<version>8.4.1</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.4.0"
28+
implementation "com.easypost:easypost-api-client:8.4.1"
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.4.0
1+
8.4.1

pom.xml

Lines changed: 1 addition & 1 deletion
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.4.0</version>
9+
<version>8.4.1</version>
1010
<packaging>jar</packaging>
1111

1212
<name>com.easypost:easypost-api-client</name>
Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,23 @@
11
package com.easypost.model;
22

3-
import com.google.gson.annotations.SerializedName;
4-
53
import lombok.Getter;
64

75
@Getter
86
public class StatelessRate {
9-
@SerializedName("delivery_date_guaranteed")
107
private Boolean deliveryDateGuaranteed;
11-
@SerializedName("delivery_days")
128
private Integer deliveryDays;
13-
@SerializedName("est_delivery_days")
149
private Integer estDeliveryDays;
15-
@SerializedName("billing_type")
1610
private String billingType;
17-
@SerializedName("carrier")
1811
private String carrier;
19-
@SerializedName("carrier_account_id")
2012
private String carrierAccountId;
21-
@SerializedName("currency")
2213
private String currency;
23-
@SerializedName("delivery_date")
2414
private String deliveryDate;
25-
@SerializedName("list_currency")
2615
private String listCurrency;
27-
@SerializedName("list_rate")
2816
private String listRate;
29-
@SerializedName("mode")
3017
private String mode;
31-
@SerializedName("object")
3218
private String object;
33-
@SerializedName("rate")
3419
private String rate;
35-
@SerializedName("retail_currency")
3620
private String retailCurrency;
37-
@SerializedName("retail_rate")
3821
private String retailRate;
39-
@SerializedName("service")
4022
private String service;
4123
}

0 commit comments

Comments
 (0)