Skip to content

Commit

Permalink
Merge pull request #238 from EasyPost/v6.3.0
Browse files Browse the repository at this point in the history
v6.3.0
  • Loading branch information
Justintime50 authored Feb 21, 2023
2 parents 7210703 + a901d5f commit b921e74
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# CHANGELOG

## Next Release
## v6.3.0 (2023-02-21)

- Adds `retrieveStatelessRates` function to pull stateless rates when shipment data is provided
- Adds beta `retrieveStatelessRates` function to get stateless rates
- Adds `getLowestStatelessRate` function to filter the lowest stateless rate

## v6.2.0 (2023-01-18)
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ clean:

## coverage - Test (and build) the project to generate a coverage report
coverage:
mvn install -Dgpg.skip=true -Dcheckstyle.skip=true -Dcheckstyle.skip=true -Ddependency-check.skip=true jacoco:report
mvn verify -Dgpg.skip=true -Dcheckstyle.skip=true -Ddependency-check.skip=true -Djavadoc.skip=true jacoco:report

## docs - Generates library documentation
docs:
mvn install -DskipTests=true -Dgpg.skip=true -Dcheckstyle.skip=true -Dcheckstyle.skip=true -Ddependency-check.skip=true
mvn install -DskipTests=true -Dgpg.skip=true -Dcheckstyle.skip=true -Ddependency-check.skip=true -Djavadoc.skip=true
cp -R target/apidocs/ ./docs/

## install-checkstyle - Install CheckStyle
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add this to your project's POM:
<dependency>
<groupId>com.easypost</groupId>
<artifactId>easypost-api-client</artifactId>
<version>6.2.0</version>
<version>6.3.0</version>
</dependency>
```

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

```groovy
implementation "com.easypost:easypost-api-client:6.2.0"
implementation "com.easypost:easypost-api-client:6.3.0"
```

**NOTE:** [Google Gson](http://code.google.com/p/google-gson/) is required.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.2.0
6.3.0
22 changes: 21 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.easypost</groupId>
<artifactId>easypost-api-client</artifactId>

<version>6.2.0</version>
<version>6.3.0</version>
<packaging>jar</packaging>

<name>com.easypost:easypost-api-client</name>
Expand Down Expand Up @@ -147,6 +147,26 @@
<goal>report</goal>
</goals>
</execution>
<execution>
<id>jacoco-check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>0.90</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down

0 comments on commit b921e74

Please sign in to comment.