File tree 4 files changed +8
-4
lines changed
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
+
1
5
### 5.1.1 2021-05-18
2
6
3
7
* fix: stops appending smartrates to Shipment object
Original file line number Diff line number Diff line change @@ -146,7 +146,8 @@ Client Library Development
146
146
### Releasing
147
147
148
148
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 `
150
151
1 . Create and push a signed git tag
151
152
1 . Create a Release in Github based on the tag, with a human-readable summary of changes
152
153
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 '
2
2
3
3
if '-' in VERSION :
4
4
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 1
1
import io
2
2
import sys
3
3
4
-
5
4
try :
6
5
from setuptools import setup
7
6
except ImportError :
24
23
25
24
setup (
26
25
name = 'easypost' ,
27
- version = '5.1.1 ' ,
26
+ version = '5.1.2 ' ,
28
27
description = 'EasyPost Shipping API Client Library for Python' ,
29
28
author = 'EasyPost' ,
30
29
author_email = 'support@easypost.com' ,
You can’t perform that action at this time.
0 commit comments