diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c4e5ef..d7b3177 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## v8.2.1 (2023-10-30) + +- Fixes a bug where `get_next_page` functions threw an error, preventing users from retrieving the final page of results + ## v8.2.0 (2023-10-11) - Add dedicated API Key-related service, available via the `api_keys` property of a client diff --git a/easypost/constant.py b/easypost/constant.py index e475ad6..aa78018 100644 --- a/easypost/constant.py +++ b/easypost/constant.py @@ -1,6 +1,6 @@ # flake8: noqa # Library version -VERSION = "8.2.0" +VERSION = "8.2.1" VERSION_INFO = [str(number) for number in VERSION.split(".")] # Client defaults diff --git a/setup.py b/setup.py index a05ded3..99e02d0 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( name="easypost", - version="8.2.0", + version="8.2.1", description="EasyPost Shipping API Client Library for Python", author="EasyPost", author_email="support@easypost.com",