File tree Expand file tree Collapse file tree 4 files changed +22
-7
lines changed
src/main/java-templates/com/easypost Expand file tree Collapse file tree 4 files changed +22
-7
lines changed Original file line number Diff line number Diff line change
1
+ === 4.0.4 2020-10-29
2
+ - Actually bump User-Agent (which hadn't been bumped since 4.0.0)
3
+
1
4
=== 4.0.3 2020-10-26
2
5
* Change `PUT` requests to be properly-encoded
3
6
* Handle null previous_attributes
9
12
* Fixed test cases on EasyPostTest (testPickup, testShipmentWithPostageLabelWithOptions )
10
13
* Fixed intermittent WebHook callback event containing "previous_attributes": null
11
14
12
-
13
15
=== 4.0.1 2018-08-28
14
16
15
17
* Add labelFile for postage_label_inline option
Original file line number Diff line number Diff line change 1
- 4.0.3
1
+ 4.0.4
2
2
Original file line number Diff line number Diff line change 5
5
<groupId >com.easypost</groupId >
6
6
<artifactId >easypost-api-client</artifactId >
7
7
8
- <version >4.0.3 </version >
8
+ <version >4.0.4 </version >
9
9
<packaging >jar</packaging >
10
10
11
11
<name >com.easypost:easypost-api-client</name >
67
67
68
68
<distributionManagement >
69
69
<snapshotRepository >
70
- <id >sonatype-nexus-snapshots </id >
70
+ <id >ossrh </id >
71
71
<url >https://oss.sonatype.org/content/repositories/snapshots</url >
72
72
</snapshotRepository >
73
73
<repository >
74
- <id >sonatype-nexus-staging </id >
74
+ <id >ossrh </id >
75
75
<url >https://oss.sonatype.org/service/local/staging/deploy/maven2</url >
76
76
</repository >
77
77
</distributionManagement >
144
144
<version >1.6.7</version >
145
145
<extensions >true</extensions >
146
146
<configuration >
147
- <serverId >sonatype-nexus-staging </serverId >
147
+ <serverId >ossrh </serverId >
148
148
<nexusUrl >https://oss.sonatype.org/</nexusUrl >
149
149
<autoReleaseAfterClose >true</autoReleaseAfterClose >
150
150
</configuration >
151
151
</plugin >
152
+ <plugin >
153
+ <groupId >org.codehaus.mojo</groupId >
154
+ <artifactId >templating-maven-plugin</artifactId >
155
+ <version >1.0.0</version >
156
+ <executions >
157
+ <execution >
158
+ <id >filtering-java-templates</id >
159
+ <goals >
160
+ <goal >filter-sources</goal >
161
+ </goals >
162
+ </execution >
163
+ </executions >
164
+ </plugin >
152
165
</plugins >
153
166
</build >
154
167
</project >
Original file line number Diff line number Diff line change 2
2
3
3
public abstract class EasyPost {
4
4
public static String API_BASE = "https://api.easypost.com/v2" ;
5
- public static final String VERSION = "4.0.0 " ;
5
+ public static final String VERSION = "${project.version} " ;
6
6
public static String apiKey ;
7
7
public static String apiVersion ;
8
8
public static int readTimeout ;
You can’t perform that action at this time.
0 commit comments