diff --git a/CHANGELOG.md b/CHANGELOG.md index 16448a4..06fd311 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,10 @@ # CHANGELOG - -## v7.15.1 (2024-01-09) +## v7.15.0 (2024-01-08) - 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 d63dd58..f5852f2 100644 --- a/easypost/version.py +++ b/easypost/version.py @@ -1,4 +1,4 @@ -VERSION = "7.15.1" +VERSION = "7.15.0" numbers = [str(number) for number in VERSION.split(".")] VERSION_INFO = numbers diff --git a/setup.py b/setup.py index 449fc0d..b443676 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name="easypost", - version="7.15.1", + version="7.15.0", description="EasyPost Shipping API Client Library for Python", author="EasyPost", author_email="support@easypost.com",