Skip to content

Commit 5c6a9a3

Browse files
authored
Merge pull request #125 from EasyPost/v5.1.1
bump to v5.1.1 fix SmartRate response JSON format
2 parents 577b5d5 + c7d789c commit 5c6a9a3

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 5.1.1 2021-05-18
2+
3+
* fix: stops appending smartrates to Shipment object
4+
15
### 5.1.0 2021-05-14
26

37
* Adds `SmartRate` functionality to the `Shipments` object (available by calling `get_smartrates()` on a shipment)

easypost/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = '5.0.0'
1+
VERSION = '5.1.1'
22

33
if '-' in VERSION:
44
VERSION_INFO = tuple([int(v) for v in VERSION.split('-')[0].split('.')] + VERSION.split('-')[1:])

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import io
22
import sys
33

4+
45
try:
56
from setuptools import setup
67
except ImportError:
@@ -23,7 +24,7 @@
2324

2425
setup(
2526
name='easypost',
26-
version='5.1.0',
27+
version='5.1.1',
2728
description='EasyPost Shipping API Client Library for Python',
2829
author='EasyPost',
2930
author_email='support@easypost.com',

0 commit comments

Comments
 (0)