We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74826e commit 9a6b196Copy full SHA for 9a6b196
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# CHANGELOG
2
3
+## v7.13.1 (2023-05-31)
4
+
5
+- Fixes a bug where `Payload` didn't inherit `EasyPostObject` which could throw errors when retrieving event payloads (closes #284)
6
7
## v7.13.0 (2023-05-02)
8
9
- Adds `retrieve_estimated_delivery_date` function to the Shipment class
easypost/payload.py
@@ -1,2 +1,5 @@
-class Payload:
+from easypost.resource import Resource
+class Payload(Resource):
pass
setup.py
@@ -33,7 +33,7 @@
33
34
setup(
35
name="easypost",
36
- version="7.13.0",
+ version="7.13.1",
37
description="EasyPost Shipping API Client Library for Python",
38
author="EasyPost",
39
author_email="[email protected]",
0 commit comments