Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# CHANGELOG


## NEXT RELEASE

* Removes `items` and `containers` which have not been supported for some time
## 5.0.0 2022-01-14

* Bump minimum Java version from 1.5 to 8
* Changed PUT/POST request bodies from url-form encoded to JSON encoded
* Added support for `SmartRate`
* Added support for `Tax Identifiers`
* Added `Checkstyle` as a plugin and linted the project
* Added new `rerate` shipment function
* Bumped project dependencies
* Include Java version in User-Agent header
* Remove `items` and `containers` which have not been supported for some time
* Corrects references of `contact@easypost.com` to `support@easypost.com`
* Updates the connection timeout to 30 seconds from 20 and the request timeout to 60 from 40

Expand Down
3 changes: 1 addition & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
4.0.4

5.0.0
23 changes: 12 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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">
<modelVersion>4.0.0</modelVersion>

<groupId>com.easypost</groupId>
<artifactId>easypost-api-client</artifactId>

<version>4.0.4</version>
<version>5.0.0</version>
<packaging>jar</packaging>

<name>com.easypost:easypost-api-client</name>
Expand Down Expand Up @@ -139,15 +140,15 @@
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down