We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6faef91 commit d0c6052Copy full SHA for d0c6052
3 files changed
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# CHANGELOG
2
3
+## v8.2.1 (2023-10-30)
4
+
5
+- Fixes a bug where `get_next_page` functions threw an error, preventing users from retrieving the final page of results
6
7
## v8.2.0 (2023-10-11)
8
9
- Add dedicated API Key-related service, available via the `api_keys` property of a client
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
setup.py
@@ -32,7 +32,7 @@
32
33
setup(
34
name="easypost",
35
- version="8.2.0",
+ version="8.2.1",
36
description="EasyPost Shipping API Client Library for Python",
37
author="EasyPost",
38
author_email="support@easypost.com",
0 commit comments