Skip to content

Commit aff8fec

Browse files
authored
Merge pull request #85 from EasyPost/v5.0.0
chore: prepare v5.0.0 for release
2 parents 8da490d + 3585e6b commit aff8fec

File tree

3 files changed

+24
-16
lines changed

3 files changed

+24
-16
lines changed

CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
# CHANGELOG
22

33

4-
## NEXT RELEASE
5-
6-
* Removes `items` and `containers` which have not been supported for some time
4+
## 5.0.0 2022-01-14
5+
6+
* Bump minimum Java version from 1.5 to 8
7+
* Changed PUT/POST request bodies from url-form encoded to JSON encoded
8+
* Added support for `SmartRate`
9+
* Added support for `Tax Identifiers`
10+
* Added `Checkstyle` as a plugin and linted the project
11+
* Added new `rerate` shipment function
12+
* Bumped project dependencies
13+
* Include Java version in User-Agent header
14+
* Remove `items` and `containers` which have not been supported for some time
715
* Corrects references of `[email protected]` to `[email protected]`
816
* Updates the connection timeout to 30 seconds from 20 and the request timeout to 60 from 40
917

VERSION

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
4.0.4
2-
1+
5.0.0

pom.xml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<groupId>com.easypost</groupId>
67
<artifactId>easypost-api-client</artifactId>
78

8-
<version>4.0.4</version>
9+
<version>5.0.0</version>
910
<packaging>jar</packaging>
1011

1112
<name>com.easypost:easypost-api-client</name>
@@ -139,15 +140,15 @@
139140
</configuration>
140141
</plugin>
141142
<plugin>
142-
<groupId>org.sonatype.plugins</groupId>
143-
<artifactId>nexus-staging-maven-plugin</artifactId>
144-
<version>1.6.7</version>
145-
<extensions>true</extensions>
146-
<configuration>
147-
<serverId>ossrh</serverId>
148-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
149-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
150-
</configuration>
143+
<groupId>org.sonatype.plugins</groupId>
144+
<artifactId>nexus-staging-maven-plugin</artifactId>
145+
<version>1.6.7</version>
146+
<extensions>true</extensions>
147+
<configuration>
148+
<serverId>ossrh</serverId>
149+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
150+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
151+
</configuration>
151152
</plugin>
152153
<plugin>
153154
<groupId>org.codehaus.mojo</groupId>

0 commit comments

Comments
 (0)