Skip to content

Commit 485265e

Browse files
committed
bump version to 4.1.0
1 parent 7195a34 commit 485265e

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 4.1.0 2020-05-11
2+
* change tests to use [vcrpy](https://github.com/kevin1024/vcrpy) so they are more reliable
3+
* add `original_exception` to `easypost.Error` in cases where we are re-raising an underlying error (e.g., an HTTP exception)
4+
* fix a bunch of flake8 warnings
5+
* [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.
6+
17
### 4.0.2 2020-05-05
28
* cleaned up how the `__version__` attribute is populated to no longer throw warnings (#95, #98, #104)
39
* added some misding reports

easypost/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pkg_resources
22

33

4-
VERSION = '4.0.2'
4+
VERSION = '4.1.0'
55

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
setup(
2424
name='easypost',
25-
version='4.0.2',
25+
version='4.1.0',
2626
description='EasyPost Shipping API Client Library for Python',
2727
author='EasyPost',
2828
author_email='[email protected]',

0 commit comments

Comments
 (0)