From edd3f73e2312153fcb144abcf5ed0066f4038c19 Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Mon, 11 Jul 2022 15:04:42 -0600 Subject: [PATCH] chore: prepares v7.2.0 for release --- CHANGELOG.md | 4 +++- easypost/version.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c02614d4..fd4ce195 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ # CHANGELOG -## NEXT RELEASE +## v7.2.0 (2022-07-11) - Adds `Billing.retrieve_payment_methods()`, `Billing.fund_wallet()`, and `Billing.delete_payment_method()` functions - Removes the unusable `carrier` param from `Address.verify()` along with the dead `message` conditional check that was missed in v7.0.0 - Adds OS specific details to the user-agent header +- API keys are now required for every request and will fail fast if not present +- Swaps update functions to use `patch` instead of `put` behind the scenes to better match the API behavior and documentation. Behavior of these functions should be unchanged ## v7.1.1 (2022-05-09) diff --git a/easypost/version.py b/easypost/version.py index 0be9502b..68455a90 100644 --- a/easypost/version.py +++ b/easypost/version.py @@ -1,4 +1,4 @@ -VERSION = "7.1.1" +VERSION = "7.2.0" elements = VERSION.split("-") numbers = [str(v) for v in elements[0].split(".")] diff --git a/setup.py b/setup.py index 6130be35..e6b3a6d3 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( name="easypost", - version="7.1.1", + version="7.2.0", description="EasyPost Shipping API Client Library for Python", author="EasyPost", author_email="support@easypost.com",