Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

### NEXT RELEASE

### v5.1.3 2021-07-20

* Remove 2015-vintage experimental "`all_updated`" action from trackers
* Correct references of `contact@easypost.com` to `support@easypost.com`
* Clean up address verify property and some miscellaneous request logic

### v5.1.2 2021-06-10

Expand Down
2 changes: 1 addition & 1 deletion easypost/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = '5.1.2'
VERSION = '5.1.3'

if '-' in VERSION:
VERSION_INFO = tuple([int(v) for v in VERSION.split('-')[0].split('.')] + VERSION.split('-')[1:])
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import io
import sys


try:
from setuptools import setup
except ImportError:
Expand All @@ -23,7 +24,7 @@

setup(
name='easypost',
version='5.1.2',
version='5.1.3',
description='EasyPost Shipping API Client Library for Python',
author='EasyPost',
author_email='support@easypost.com',
Expand Down