Skip to content

Commit ef356bb

Browse files
authored
Merge pull request #209 from EasyPost/v7.2.0
chore: prepares v7.2.0 for release
2 parents e755056 + edd3f73 commit ef356bb

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# CHANGELOG
22

3-
## NEXT RELEASE
3+
## v7.2.0 (2022-07-11)
44

55
- Adds `Billing.retrieve_payment_methods()`, `Billing.fund_wallet()`, and `Billing.delete_payment_method()` functions
66
- Removes the unusable `carrier` param from `Address.verify()` along with the dead `message` conditional check that was missed in v7.0.0
77
- Adds OS specific details to the user-agent header
8+
- API keys are now required for every request and will fail fast if not present
9+
- Swaps update functions to use `patch` instead of `put` behind the scenes to better match the API behavior and documentation. Behavior of these functions should be unchanged
810

911
## v7.1.1 (2022-05-09)
1012

easypost/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "7.1.1"
1+
VERSION = "7.2.0"
22

33
elements = VERSION.split("-")
44
numbers = [str(v) for v in elements[0].split(".")]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
setup(
3636
name="easypost",
37-
version="7.1.1",
37+
version="7.2.0",
3838
description="EasyPost Shipping API Client Library for Python",
3939
author="EasyPost",
4040
author_email="support@easypost.com",

0 commit comments

Comments
 (0)