Skip to content

Commit ae464e7

Browse files
authored
Merge pull request #129 from Justintime50/version-bump
chore: bump version for smartrate correction
2 parents 89d9396 + 31062aa commit ae464e7

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
### 5.1.1 2021-05-18
26

37
* fix: stops appending smartrates to Shipment object

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ Client Library Development
146146
### Releasing
147147

148148
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`
150151
1. Create and push a signed git tag
151152
1. Create a Release in Github based on the tag, with a human-readable summary of changes
152153
1. Build sdist and wheel: `rm -rf build/ dist/ ./*.egg-info; python3 setup.py sdist bdist_wheel`

easypost/version.py

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

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

setup.py

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

4-
54
try:
65
from setuptools import setup
76
except ImportError:
@@ -24,7 +23,7 @@
2423

2524
setup(
2625
name='easypost',
27-
version='5.1.1',
26+
version='5.1.2',
2827
description='EasyPost Shipping API Client Library for Python',
2928
author='EasyPost',
3029
author_email='support@easypost.com',

0 commit comments

Comments
 (0)