From cc7bebb6dfc507247a7b8c00a08c2157f56ce8ba Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Mon, 9 May 2022 10:58:50 -0600 Subject: [PATCH] chore: prepare v7.1.0 for release --- CHANGELOG.md | 9 ++++----- easypost/version.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02e343ae..4a52abf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,10 @@ # CHANGELOG -## NEXT RELEASE +## v7.1.0 (2022-05-09) -- Adds a `lowest_rate` function to Orders and Pickups -- Adds a `Shipment.get_lowest_smartrate` function and a `shipment.lowest_smartrate()` function -- Add beta Referral class for White Label API with these new functions: -`create()`, `update_email()`, `all()`, and `add_credit_card()` +- Adds a `lowest_rate()` function to Orders and Pickups +- Adds a `Shipment.get_lowest_smartrate()` function and a `shipment.lowest_smartrate()` function +- Adds beta Referral class for Partner White Label API with these new functions: `create()`, `update_email()`, `all()`, and `add_credit_card()` ## v7.0.0 (2022-04-14) diff --git a/easypost/version.py b/easypost/version.py index 3e815a09..ff33672a 100644 --- a/easypost/version.py +++ b/easypost/version.py @@ -1,4 +1,4 @@ -VERSION = "7.0.0" +VERSION = "7.1.0" elements = VERSION.split("-") numbers = [str(v) for v in elements[0].split(".")] diff --git a/setup.py b/setup.py index 85d5e781..a1cb2f9e 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup( name="easypost", - version="7.0.0", + version="7.1.0", description="EasyPost Shipping API Client Library for Python", author="EasyPost", author_email="support@easypost.com",