File tree Expand file tree Collapse file tree 4 files changed +19
-4
lines changed
src/main/java-templates/com/easypost Expand file tree Collapse file tree 4 files changed +19
-4
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 >
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