Skip to content

Commit b921e74

Browse files
authored
Merge pull request #238 from EasyPost/v6.3.0
v6.3.0
2 parents 7210703 + a901d5f commit b921e74

File tree

5 files changed

+28
-8
lines changed

5 files changed

+28
-8
lines changed

CHANGELOG.md

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

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

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

88
## v6.2.0 (2023-01-18)

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ clean:
1212

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

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

2222
## install-checkstyle - Install CheckStyle

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.2.0</version>
19+
<version>6.3.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.2.0"
28+
implementation "com.easypost:easypost-api-client:6.3.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.2.0
1+
6.3.0

pom.xml

Lines changed: 21 additions & 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.2.0</version>
9+
<version>6.3.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>com.easypost:easypost-api-client</name>
@@ -147,6 +147,26 @@
147147
<goal>report</goal>
148148
</goals>
149149
</execution>
150+
<execution>
151+
<id>jacoco-check</id>
152+
<goals>
153+
<goal>check</goal>
154+
</goals>
155+
<configuration>
156+
<rules>
157+
<rule>
158+
<element>BUNDLE</element>
159+
<limits>
160+
<limit>
161+
<counter>LINE</counter>
162+
<value>COVEREDRATIO</value>
163+
<minimum>0.90</minimum>
164+
</limit>
165+
</limits>
166+
</rule>
167+
</rules>
168+
</configuration>
169+
</execution>
150170
</executions>
151171
</plugin>
152172
<plugin>

0 commit comments

Comments
 (0)