From e229f4e0ade782e39b9066de5603a70e3ff35eca Mon Sep 17 00:00:00 2001 From: nwithan8 Date: Tue, 9 Jan 2024 11:27:25 -0700 Subject: [PATCH] - Prep for v7.15.1 release --- CHANGELOG.md | 7 ++++++- easypost/version.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06fd311..16448a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,15 @@ # CHANGELOG -## v7.15.0 (2024-01-08) + +## v7.15.1 (2024-01-09) - Adds `all_children` function to the User class for retrieving paginated lists of children users, and removes the beta function - Adds `get_next_page_of_children` function to the User class for retrieving next paginated lists of children users, and removes the beta function +## v7.15.0 (2024-01-08) + +**This release erroneously included code from v8.x.x and v9.x.x. Use v7.15.1 instead.** + ## v7.14.1 (2023-10-30) - Fixes a bug where `get_next_page` functions threw an error, preventing users from retrieving the final page of results diff --git a/easypost/version.py b/easypost/version.py index f5852f2..d63dd58 100644 --- a/easypost/version.py +++ b/easypost/version.py @@ -1,4 +1,4 @@ -VERSION = "7.15.0" +VERSION = "7.15.1" numbers = [str(number) for number in VERSION.split(".")] VERSION_INFO = numbers diff --git a/setup.py b/setup.py index b443676..449fc0d 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name="easypost", - version="7.15.0", + version="7.15.1", description="EasyPost Shipping API Client Library for Python", author="EasyPost", author_email="support@easypost.com",