From a431d0eeb5f7f860197e71dcb2b7b9ea1b43c9c4 Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Thu, 27 Jul 2023 13:32:33 -0600 Subject: [PATCH] chore: prepare v8.1.0 for release --- CHANGELOG.md | 2 +- easypost/constant.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 191b07ff..ba651383 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## Next Release +## v8.1.0 (2023-07-28) - Adds new `RequestHook` and `ResponseHook` events. (un)subscribe to them with the new `subscribe_to_request_hook`, `subscribe_to_response_hook`, `unsubscribe_from_request_hook`, or `unsubscribe_from_response_hook` methods of an `EasyPostClient` - Maps 400 status codes to new `BadRequestError` class diff --git a/easypost/constant.py b/easypost/constant.py index 2efea1e5..42fc8111 100644 --- a/easypost/constant.py +++ b/easypost/constant.py @@ -1,6 +1,6 @@ # flake8: noqa # Library version -VERSION = "8.0.0" +VERSION = "8.1.0" VERSION_INFO = [str(number) for number in VERSION.split(".")] # Client defaults diff --git a/setup.py b/setup.py index cca7d0ff..5df28a15 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name="easypost", - version="8.0.0", + version="8.1.0", description="EasyPost Shipping API Client Library for Python", author="EasyPost", author_email="support@easypost.com",