Skip to content

Commit 9081e75

Browse files
authored
Merge pull request #221 from EasyPost/v6.0.0
chore: prepare v6.0.0 for release
2 parents fcd23c3 + 8c4bb24 commit 9081e75

File tree

4 files changed

+19
-17
lines changed

4 files changed

+19
-17
lines changed

CHANGELOG.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
# CHANGELOG
22

3-
## Next Release
4-
5-
- [CHANGED] All constants are now defined in the top-level `Constants` class (`com.easypost.Constants`).
6-
- Users who are utilizing the constants for exception message parsing should account for the new namespace.
7-
- [ADDED] Support for creating/registering carrier accounts that require custom workflows (e.g. FedEx, UPS)
8-
- [CHANGED] Swap the parameters for below functions, to make `id` in the first argument
9-
- Shipment.generateForm()
10-
- EndShipper.update()
11-
- CarrierAccount.update()
12-
- [FIXED] Typo, `ServiceUnavailablError` is now `ServiceUnavailableError`
13-
- [FIXED] Typo: `Smartrate` is now `SmartRate`, `apikeys` is now `apiKey`, `scanform` is now `scanForm`
14-
- [FIXED] Move `validateWebook`, `findLowestSmartrate`, and `getLowestSmartRate` from Services to Utilities since it does not required an EasyPost client object
15-
- [ADDED] Add a root level `APIException` class for all HTTP exceptions
3+
## v6.0.0 (2023-01-05)
4+
5+
Includes all the changes from `v6.0.0-rc1` listed below in addition to the following:
6+
7+
- All constants are now defined in the top-level `Constants` class (`com.easypost.Constants`)
8+
- Users who are utilizing the constants for exception message parsing should account for the new namespace
9+
- Added support for creating/registering carrier accounts that require custom workflows (e.g. FedEx, UPS)
10+
- Swapped the parameters for the following functions, making `id` the first argument
11+
- `Shipment.generateForm()`
12+
- `EndShipper.update()`
13+
- `CarrierAccount.update()`
14+
- Fixed a typo, `ServiceUnavailablError` is now `ServiceUnavailableError`
15+
- Fixed a typo: `Smartrate` is now `SmartRate`, `apikeys` is now `apiKey`, `scanform` is now `scanForm`
16+
- Moved `validateWebook`, `findLowestSmartrate`, and `getLowestSmartRate` from Services to Utilities since it does not required an EasyPost client object
17+
- Added a root level `APIException` class for all HTTP exceptions
1618

1719
## v6.0.0-rc1 (2022-11-30)
1820

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add this to your project's POM:
1616
<dependency>
1717
<groupId>com.easypost</groupId>
1818
<artifactId>easypost-api-client</artifactId>
19-
<version>6.0.0-rc1</version>
19+
<version>6.0.0</version>
2020
</dependency>
2121
```
2222

@@ -25,7 +25,7 @@ Add this to your project's POM:
2525
Add this to your project's build file:
2626

2727
```groovy
28-
implementation "com.easypost:easypost-api-client:6.0.0-rc1"
28+
implementation "com.easypost:easypost-api-client:6.0.0"
2929
```
3030

3131
**NOTE:** [Google Gson](http://code.google.com/p/google-gson/) is required.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.0.0-rc1
1+
6.0.0

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.easypost</groupId>
77
<artifactId>easypost-api-client</artifactId>
88

9-
<version>6.0.0-rc1</version>
9+
<version>6.0.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>com.easypost:easypost-api-client</name>

0 commit comments

Comments
 (0)