From 39af73c579857ade4ee0ea4d304aefa222268062 Mon Sep 17 00:00:00 2001 From: nwithan8 Date: Mon, 30 Oct 2023 11:52:07 -0600 Subject: [PATCH] - Prep for v8.2.1 release --- CHANGELOG.md | 4 ++++ easypost/constant.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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",