From 2a789e7fa2bfc5ca39c7228ad0f5114f67653ec4 Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Mon, 1 Dec 2025 16:50:37 -0700 Subject: [PATCH] chore: prep v8.4.1 --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- VERSION | 2 +- pom.xml | 2 +- .../java/com/easypost/model/StatelessRate.java | 18 ------------------ 5 files changed, 9 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12bc60f3f..7b6f4c9e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## v8.4.1 (2025-12-01) + +- Adds missing `apiKeys` field to `BaseUser` +- Removes unecessary `SerializedName` entries in `StatelessRate` + ## v8.4.0 (2025-11-24) - Adds the following functions: diff --git a/README.md b/README.md index 8994f4f33..b5dfd1431 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add this to your project's POM: com.easypost easypost-api-client - 8.4.0 + 8.4.1 ``` @@ -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.4.0" +implementation "com.easypost:easypost-api-client:8.4.1" ``` **NOTE:** [Google Gson](http://code.google.com/p/google-gson/) is required. diff --git a/VERSION b/VERSION index a2f28f43b..6da4de57d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.4.0 +8.4.1 diff --git a/pom.xml b/pom.xml index 6fecae310..f2ea0e633 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.easypost easypost-api-client - 8.4.0 + 8.4.1 jar com.easypost:easypost-api-client diff --git a/src/main/java/com/easypost/model/StatelessRate.java b/src/main/java/com/easypost/model/StatelessRate.java index 56fd1a58d..fd8f092a9 100644 --- a/src/main/java/com/easypost/model/StatelessRate.java +++ b/src/main/java/com/easypost/model/StatelessRate.java @@ -1,41 +1,23 @@ package com.easypost.model; -import com.google.gson.annotations.SerializedName; - import lombok.Getter; @Getter public class StatelessRate { - @SerializedName("delivery_date_guaranteed") private Boolean deliveryDateGuaranteed; - @SerializedName("delivery_days") private Integer deliveryDays; - @SerializedName("est_delivery_days") private Integer estDeliveryDays; - @SerializedName("billing_type") private String billingType; - @SerializedName("carrier") private String carrier; - @SerializedName("carrier_account_id") private String carrierAccountId; - @SerializedName("currency") private String currency; - @SerializedName("delivery_date") private String deliveryDate; - @SerializedName("list_currency") private String listCurrency; - @SerializedName("list_rate") private String listRate; - @SerializedName("mode") private String mode; - @SerializedName("object") private String object; - @SerializedName("rate") private String rate; - @SerializedName("retail_currency") private String retailCurrency; - @SerializedName("retail_rate") private String retailRate; - @SerializedName("service") private String service; }