Skip to content

Commit 488e3b5

Browse files
committed
bump version to 5.0.0
1 parent 0075d3d commit 488e3b5

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 5.0.0 2020-08-10
2+
* Add `all` method for retrieving Events
3+
* _[backwards-compatibility break]_ Remove `all` method for some un-supported types: CustomsItem, CustomsInfo, Pickup, and Order
4+
15
### 4.1.0 2020-05-11
26
* change tests to use [vcrpy](https://github.com/kevin1024/vcrpy) so they are more reliable
37
* add `original_exception` to `easypost.Error` in cases where we are re-raising an underlying error (e.g., an HTTP exception)

easypost/version.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
import pkg_resources
2-
3-
4-
VERSION = '4.1.0'
1+
VERSION = '5.0.0'
52

63
if '-' in VERSION:
74
VERSION_INFO = tuple([int(v) for v in VERSION.split('-')[0].split('.')] + VERSION.split('-')[1:])

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
setup(
2424
name='easypost',
25-
version='4.1.0',
25+
version='5.0.0',
2626
description='EasyPost Shipping API Client Library for Python',
2727
author='EasyPost',
2828
author_email='[email protected]',

0 commit comments

Comments
 (0)