Skip to content

Commit 9a6b196

Browse files
Justintime50nwithan8
authored andcommitted
fix: payload inherits resource
1 parent f74826e commit 9a6b196

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

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+
37
## v7.13.0 (2023-05-02)
48

59
- Adds `retrieve_estimated_delivery_date` function to the Shipment class

Diff for: easypost/payload.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
class Payload:
1+
from easypost.resource import Resource
2+
3+
4+
class Payload(Resource):
25
pass

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
setup(
3535
name="easypost",
36-
version="7.13.0",
36+
version="7.13.1",
3737
description="EasyPost Shipping API Client Library for Python",
3838
author="EasyPost",
3939
author_email="[email protected]",

0 commit comments

Comments
 (0)