Skip to content

Commit 0402070

Browse files
authored
Bump version to 5.1.0
chore: bump to v5.1.0 for SmartRate
2 parents 34bd13f + 6811a9d commit 0402070

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
1+
### 5.1.0 2021-05-14
2+
3+
* Adds `SmartRate` functionality to the `Shipments` object (available by calling `get_smartrates()` on a shipment)
4+
15
### 5.0.0 2020-08-10
6+
27
* Add `all` method for retrieving Events
38
* _[backwards-compatibility break]_ Remove `all` method for some un-supported types: CustomsItem, CustomsInfo, Pickup, and Order
49

510
### 4.1.0 2020-05-11
11+
612
* change tests to use [vcrpy](https://github.com/kevin1024/vcrpy) so they are more reliable
713
* add `original_exception` to `easypost.Error` in cases where we are re-raising an underlying error (e.g., an HTTP exception)
814
* fix a bunch of flake8 warnings
915
* [potentially-breaking] soft-deprecate Python 3.3 and 3.4. these have been dropped by most of the libraries we use, so probably don't work anyway.
1016
* Swap GET to POST on Refund method
1117

1218
### 4.0.2 2020-05-05
19+
1320
* cleaned up how the `__version__` attribute is populated to no longer throw warnings (#95, #98, #104)
1421
* added some misding reports
1522
* fix stale tests

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import sys
21
import io
2+
import sys
3+
34
try:
45
from setuptools import setup
56
except ImportError:
@@ -22,7 +23,7 @@
2223

2324
setup(
2425
name='easypost',
25-
version='5.0.0',
26+
version='5.1.0',
2627
description='EasyPost Shipping API Client Library for Python',
2728
author='EasyPost',
2829
author_email='support@easypost.com',

0 commit comments

Comments
 (0)