File tree 4 files changed +33
-3
lines changed
4 files changed +33
-3
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
- ## Next Release
3
+ ## v10.0.0 (2025-04-28)
4
+
5
+ See our [ Upgrade Guide] ( UPGRADE_GUIDE.md#upgrading-from-9x-to-100 ) for more details.
4
6
5
7
- Drops support for Python 3.7 and 3.8
6
8
- Adds the following functions to assist ReferralCustomers add credit cards and bank accounts:
Original file line number Diff line number Diff line change 2
2
3
3
Use the following guide to assist in the upgrade process of the ` easypost-python ` library between major versions.
4
4
5
+ - [ Upgrading from 9.x to 10.0] ( #upgrading-from-9x-to-100 )
5
6
- [ Upgrading from 8.x to 9.0] ( #upgrading-from-8x-to-90 )
6
7
- [ Upgrading from 7.x to 8.0] ( #upgrading-from-7x-to-80 )
7
8
- [ Upgrading from 6.x to 7.0] ( #upgrading-from-6x-to-70 )
8
9
- [ Upgrading from 5.x to 6.0] ( #upgrading-from-5x-to-60 )
9
10
11
+ ## Upgrading from 9.x to 10.0
12
+
13
+ ### 10.0 High Impact Changes
14
+
15
+ - [ Updated Dependencies] ( #100-updated-dependencies )
16
+
17
+ ### 10.0 Medium Impact Changes
18
+
19
+ - [ Deprecations] ( #100-deprecations )
20
+
21
+ ### 10.0 Updated Dependencies
22
+
23
+ ** Python 3.9 Required**
24
+
25
+ easypost-python now requires Python 3.9 or greater.
26
+
27
+ ### 10.0 Deprecations
28
+
29
+ * Likelihood of Impact: ** Medium***
30
+
31
+ The following deprecated functions have been removed:
32
+
33
+ - ` user.all_api_keys ` (use ` api_key.all ` )
34
+ - ` users.api_keys ` (use ` api_key.retrieve_api_keys_for_user ` )
35
+
10
36
## Upgrading from 8.x to 9.0
11
37
38
+ ** NOTICE:** v9 is deprecated.
39
+
12
40
### 9.0 High Impact Changes
13
41
14
42
- [ Carbon Offset Removed] ( #90-carbon-offset-removed )
Original file line number Diff line number Diff line change 1
1
# flake8: noqa
2
2
# Library version
3
- VERSION = "9.5 .0"
3
+ VERSION = "10.0 .0"
4
4
VERSION_INFO = [str (number ) for number in VERSION .split ("." )]
5
5
6
6
# Client defaults
Original file line number Diff line number Diff line change 27
27
28
28
setup (
29
29
name = "easypost" ,
30
- version = "9.5 .0" ,
30
+ version = "10.0 .0" ,
31
31
description = "EasyPost Shipping API Client Library for Python" ,
32
32
author = "EasyPost" ,
33
33
You can’t perform that action at this time.
0 commit comments