This repository was archived by the owner on Jul 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
aftership-sdk/src/main/java/com/aftership/sdk/utils Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 3.0.0] - 2023-11-24
8+ ### Added
9+ - Support new api versions 2023-10 (https://github.com/AfterShip/aftership-sdk-java/pull/60 )
10+
711## [ 2.1.11] - 2023-10-08
812### Added
913- Add shipment_tags field (https://github.com/AfterShip/aftership-sdk-java/pull/57 )
@@ -80,6 +84,7 @@ Compatibility
8084### Changed
8185- Solving issue at Checkpoint.java, typo in ``` country_iso3 ```
8286
87+ [ 3.0.0 ] : https://github.com/AfterShip/aftership-sdk-java/compare/2.1.11...3.0.0
8388[ 2.1.11 ] : https://github.com/AfterShip/aftership-sdk-java/compare/2.1.10...2.1.11
8489[ 2.1.10 ] : https://github.com/AfterShip/aftership-sdk-java/compare/2.1.9...2.1.10
8590[ 2.1.9 ] : https://github.com/AfterShip/aftership-sdk-java/compare/2.1.7...2.1.9
Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ Requirements:
1818<dependency>
1919 <groupId>com.aftership</groupId>
2020 <artifactId>aftership-sdk</artifactId>
21- <version>2.1.11 </version>
21+ <version>3.0.0 </version>
2222</dependency>
2323```
2424
2525### Gradle
2626
2727``` text
28- implementation "com.aftership:aftership-sdk:2.1.11 "
28+ implementation "com.aftership:aftership-sdk:3.0.0 "
2929```
3030
3131
Original file line number Diff line number Diff line change 44public final class Define {
55
66 /** Version of the current component */
7- public static final String VERSION = "2.1.11 " ;
7+ public static final String VERSION = "3.0.0 " ;
88
99 /** The range of http status codes for successful API requests */
1010 public static final int [] SUCCESSFUL_CODE_RANGE ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ buildscript {
1717
1818allprojects {
1919 group ' com.aftership'
20- version ' 2.1.11 '
20+ version ' 3.0.0 '
2121
2222 repositories {
2323 mavenCentral()
@@ -110,7 +110,7 @@ project(':aftership-sample') {
110110 dependencies {
111111// compile project(':aftership-sdk')
112112 implementation " com.squareup.okhttp3:okhttp:${ okhttpVersion} "
113- implementation " com.aftership:aftership-sdk:2.1.11 "
113+ implementation " com.aftership:aftership-sdk:3.0.0 "
114114 }
115115
116116 jar {
You can’t perform that action at this time.
0 commit comments