diff --git a/CHANGELOG.md b/CHANGELOG.md index 191b07f..ba65138 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 2efea1e..42fc811 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 cca7d0f..5df28a1 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",