From 48bf907d36c15d36cbad34e889869160336dfab4 Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Fri, 1 Jul 2022 10:12:08 -0600 Subject: [PATCH] chore: prepares v6.0.1 for release --- CHANGELOG.md | 35 +++++------------------------------ easypost/version.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 32 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9df7ec3..4f2b7b3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## CHANGELOG +### v6.0.1 2022-07-01 + +* Backported newer user-agent header + ### v6.0.0 2021-10-12 * JSON encodes POST bodies instead of form encoding them @@ -64,6 +68,7 @@ * Fix typo in `install_requires` causing `six` to not be installed by pip (gh-84 from @roehnan) ### 3.6.4 2018-04-09 (never actually released) + * Update user tests ### 3.6.3 2018-02-05 @@ -89,103 +94,84 @@ * Added `get_rates` method to Order objects - ### 3.5.1 2017-01-19 * Fixed create for ScanForms - ### 3.5.0 2017-01-18 * Added basic CRUD methods for Webhook Objects * Fixed Order test - ### 3.4.0 2016-12-20 * Added session pooling - ### 3.3.0 2016-12-15 * Added support for Report objects - ### 3.2.2 2016-07-29 * Added support for Insurance objects - ### 3.2.1 2016-07-18 * Added `to_json` method for EasyPost object. Thanks ThePsyjo! - ### 3.2.0 2016-05-17 * Remove `api_keys` from object dumps * Fixed address tests to keep them in line with the new API messages * This was previously known as version 3.1.3 - ### 3.1.2 2016-03-04 * Added a suite of unittest tests. Thanks wyounas! - ### 3.1.1 2016-02-12 * Added ability to interact with Users (create, retrieve and update) - ### 3.1.0 2015-12-08 * Add verifications to Address.create - ### 3.0.6 2015-11-24 * Added Blob.retrieve for fetching urls for blobs stored by EasyPost. - ### 3.0.5 2015-11-18 * Changed the interface on `Tracker.create_list` to return True rather than the Trackers themselves - ### 3.0.4 2015-11-16 * Minor bugfix - ### 3.0.3 2015-11-16 * Added a `Tracker.all_updated` method for retrieving a large number of Trackers by status or `tracking_details` updated datetime - ### 3.0.2 2015-11-10 * Added a `Tracker.create_list` method for creating a large number of Trackers at once - ### 3.0.1 2015-11-04 * Fixed some examples and added some new ones, particularly dealing with Tracker.all - ### 3.0.0 2015-10-19 * Fixed bug where retrieving a shipment by tracking code or reference doesn't set the ID properly - ### 2.0.16 2015-08-10 * Added ability to interact with carrier accounts (full CRUD) - ### 2.0.15 2015-07-31 * Fixed bug with address verification url rendering @@ -194,59 +180,48 @@ at once * Fix numerous bugs, including Python3 encoding - ### 2.0.13 2015-01-09 * Added python3 support - ### 2.0.12 2014-11-04 * Added tracker to shipment response * Added tracker example - ### 2.0.11 2014-09-19 * Added Order support. - ### 2.0.10 2014-09-10 * Added Pickup cancellation method. - ### 2.0.9 2014-09-02 * Added Pickup resource for scheduling pickups. - ### 2.0.6 2013-10-17 * Added Event resource for webhook digestion. * Added buy method to Batch. - ### 2.0.5 2013-09-22 * Bug Fix: UTF-8 input handled more gracefully. - ### 2.0.4 2013-07-31 * API Addition: Tracker resource added. Trackers can be used to register any tracking code with EasyPost webhooks. - ### 2.0.3 2013-07-23 * API Addition: `Shipment.track_with_code` returns tracking details for any tracking code. - ### 2.0.2 2013-07-07 * Bug fix: `address.create_and_verify` is now a classmethod. - ### 2.0.1 2013-07-05 * Added function to Address to all creating and verifying at the same time. diff --git a/easypost/version.py b/easypost/version.py index ff5cf046..09f17156 100644 --- a/easypost/version.py +++ b/easypost/version.py @@ -1,4 +1,4 @@ -VERSION = "6.0.0" +VERSION = "6.0.1" if "-" in VERSION: VERSION_INFO = tuple([int(v) for v in VERSION.split("-")[0].split(".")] + VERSION.split("-")[1:]) diff --git a/setup.py b/setup.py index 8108c843..3e1892f0 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name="easypost", - version="6.0.0", + version="6.0.1", description="EasyPost Shipping API Client Library for Python", author="EasyPost", author_email="support@easypost.com",