File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ ### v5.1.2 2021-06-10
2+
3+ * Strips away the ` result ` key from SmartRate and simply returns an array of SmartRate objects
4+
15### 5.1.1 2021-05-18
26
37* fix: stops appending smartrates to Shipment object
Original file line number Diff line number Diff line change @@ -146,7 +146,8 @@ Client Library Development
146146### Releasing
147147
148148 1 . Add new features to [ CHANGELOG.md] ( CHANGELOG.md )
149- 1 . Bump the version in ` easypost/version.py ` and ` setup.py `
149+ 1 . Bump the version in ` easypost/version.py `
150+ 1 . Bump the version in ` setup.py `
150151 1 . Create and push a signed git tag
151152 1 . Create a Release in Github based on the tag, with a human-readable summary of changes
152153 1 . Build sdist and wheel: ` rm -rf build/ dist/ ./*.egg-info; python3 setup.py sdist bdist_wheel `
Original file line number Diff line number Diff line change 1- VERSION = '5.1.1 '
1+ VERSION = '5.1.2 '
22
33if '-' in VERSION :
44 VERSION_INFO = tuple ([int (v ) for v in VERSION .split ('-' )[0 ].split ('.' )] + VERSION .split ('-' )[1 :])
Original file line number Diff line number Diff line change 11import io
22import sys
33
4-
54try :
65 from setuptools import setup
76except ImportError :
2423
2524setup (
2625 name = 'easypost' ,
27- version = '5.1.1 ' ,
26+ version = '5.1.2 ' ,
2827 description = 'EasyPost Shipping API Client Library for Python' ,
2928 author = 'EasyPost' ,
3029 author_email = 'support@easypost.com' ,
You can’t perform that action at this time.
0 commit comments