From 488e3b50b78ba91b4f4364f5e585ed4aa160cef6 Mon Sep 17 00:00:00 2001 From: James Brown Date: Mon, 10 Aug 2020 16:58:57 +0000 Subject: [PATCH] bump version to 5.0.0 --- CHANGELOG.md | 4 ++++ easypost/version.py | 5 +---- setup.py | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d637d48..de326025 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 5.0.0 2020-08-10 +* Add `all` method for retrieving Events +* _[backwards-compatibility break]_ Remove `all` method for some un-supported types: CustomsItem, CustomsInfo, Pickup, and Order + ### 4.1.0 2020-05-11 * change tests to use [vcrpy](https://github.com/kevin1024/vcrpy) so they are more reliable * add `original_exception` to `easypost.Error` in cases where we are re-raising an underlying error (e.g., an HTTP exception) diff --git a/easypost/version.py b/easypost/version.py index 60da00b5..d3f8ab3e 100644 --- a/easypost/version.py +++ b/easypost/version.py @@ -1,7 +1,4 @@ -import pkg_resources - - -VERSION = '4.1.0' +VERSION = '5.0.0' 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 0008ec1c..ee951108 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name='easypost', - version='4.1.0', + version='5.0.0', description='EasyPost Shipping API Client Library for Python', author='EasyPost', author_email='support@easypost.com',