Skip to content

Commit

Permalink
bump version to 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Roguelazer committed Aug 10, 2020
1 parent 0075d3d commit 488e3b5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
5 changes: 1 addition & 4 deletions easypost/version.py
Original file line number Diff line number Diff line change
@@ -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:])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 488e3b5

Please sign in to comment.