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

Commit 5558f22

Browse files
authored
Merge pull request #52 from Beaelf/feature/release-2.1.9
release 2.1.9
2 parents 091fa22 + 2876826 commit 5558f22

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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

77

8-
## [2.1.8] - 2023-04-07
8+
## [2.1.9] - 2023-04-07
99
### Fixed
1010
- Fix No option constructor throws NullPointerException, add null options validate
1111
- PR: https://github.com/AfterShip/aftership-sdk-java/pull/48
@@ -74,7 +74,7 @@ Compatibility
7474
- Solving issue at Checkpoint.java, typo in ```country_iso3```
7575

7676

77-
[2.1.8]: https://github.com/AfterShip/aftership-sdk-java/compare/2.1.7...2.1.8
77+
[2.1.9]: https://github.com/AfterShip/aftership-sdk-java/compare/2.1.7...2.1.9
7878
[2.1.7]: https://github.com/AfterShip/aftership-sdk-java/compare/2.1.6...2.1.7
7979
[2.1.6]: https://github.com/AfterShip/aftership-sdk-java/compare/2.1.5...2.1.6
8080
[2.1.5]: https://github.com/AfterShip/aftership-sdk-java/compare/v2.1.3...2.1.5

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.8</version>
21+
<version>2.1.9</version>
2222
</dependency>
2323
```
2424

2525
### Gradle
2626

2727
```text
28-
implementation "com.aftership:aftership-sdk:2.1.8"
28+
implementation "com.aftership:aftership-sdk:2.1.9"
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.8";
7+
public static final String VERSION = "2.1.9";
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.8'
20+
version '2.1.9'
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.8"
113+
implementation "com.aftership:aftership-sdk:2.1.9"
114114
}
115115

116116
jar {

0 commit comments

Comments
 (0)