Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 1a7d4ed

Browse files
authored
Merge pull request #61 from 1415003719/release-3.0.0
release 3.0.0
2 parents 7be5695 + f1505b1 commit 1a7d4ed

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

aftership-sdk/src/main/java/com/aftership/sdk/utils/Define.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
public 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;

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ buildscript {
1717

1818
allprojects {
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 {

0 commit comments

Comments
 (0)