File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ### 5.1.1 2021-05-18
2
+
3
+ * fix: stops appending smartrates to Shipment object
4
+
1
5
### 5.1.0 2021-05-14
2
6
3
7
* Adds ` SmartRate ` functionality to the ` Shipments ` object (available by calling ` get_smartrates() ` on a shipment)
Original file line number Diff line number Diff line change 1
- VERSION = '5.0.0 '
1
+ VERSION = '5.1.1 '
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
+
4
5
try :
5
6
from setuptools import setup
6
7
except ImportError :
23
24
24
25
setup (
25
26
name = 'easypost' ,
26
- version = '5.1.0 ' ,
27
+ version = '5.1.1 ' ,
27
28
description = 'EasyPost Shipping API Client Library for Python' ,
28
29
author = 'EasyPost' ,
29
30
author_email = 'support@easypost.com' ,
You can’t perform that action at this time.
0 commit comments