From a1f77781b5dfc7da43e545bacf56e6d15e938218 Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Mon, 11 Jul 2022 14:13:35 -0600 Subject: [PATCH] chore: prepare v2.4.0 for release --- CHANGELOG.md | 13 +++++++------ version.go | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c9785e..17244d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,15 @@ # CHANGELOG -## Next Release +## v2.4.0 (2022-07-11) -- Adds Billing file with `RetrievePaymentMethods`, `FundWallet` and `DeletePaymentMethod` methods -- Adds PaymentMethodObject file with `PaymentMethodType` and `PaymentMethodPriority` enums +- Adds `RetrievePaymentMethods`, `FundWallet` and `DeletePaymentMethod` functions - Adds `BillingType` in CarrierAccount and Rate structs -- Add new lowest rate functions for Shipments, Orders and Pickups -- Add new lowest smartrate functions for Shipments +- Adds new lowest rate functions for Shipments, Orders and Pickups +- Adds new lowest smartrate functions for Shipments - Adds OS details to the User-Agent header -- Add support for webhook secrets +- Adds support for webhook secrets +- Update methods now use `patch` instead of `put` behind the scenes to better match the API expectation and documentation. Update functions should still behave the same as before +- Enforces passing an API key on each request (the library will now fail fast instead of sending an impossible-to-service HTTP request) ## v2.3.0 (2022-04-13) diff --git a/version.go b/version.go index adec6aa..63aef65 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package easypost -const Version = "2.3.0" +const Version = "2.4.0"