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

Commit

Permalink
Merge pull request #58 from Beaelf/feature/release-2.1.11
Browse files Browse the repository at this point in the history
release 2.1.11
  • Loading branch information
Beaelf authored Oct 8, 2023
2 parents dd1d2a0 + 6d67491 commit 0a21162
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.1.11] - 2023-10-08
### Added
- Add shipment_tas field (https://github.com/AfterShip/aftership-sdk-java/pull/57)

## [2.1.10] - 2023-05-15
### Fixed
- Fix sign bug (https://github.com/AfterShip/aftership-sdk-java/pull/53)
Expand Down Expand Up @@ -76,6 +80,7 @@ Compatibility
### Changed
- Solving issue at Checkpoint.java, typo in ```country_iso3```

[2.1.11]: https://github.com/AfterShip/aftership-sdk-java/compare/2.1.10...2.1.11
[2.1.10]: https://github.com/AfterShip/aftership-sdk-java/compare/2.1.9...2.1.10
[2.1.9]: https://github.com/AfterShip/aftership-sdk-java/compare/2.1.7...2.1.9
[2.1.7]: https://github.com/AfterShip/aftership-sdk-java/compare/2.1.6...2.1.7
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ Requirements:
<dependency>
<groupId>com.aftership</groupId>
<artifactId>aftership-sdk</artifactId>
<version>2.1.10</version>
<version>2.1.11</version>
</dependency>
```

### Gradle

```text
implementation "com.aftership:aftership-sdk:2.1.10"
implementation "com.aftership:aftership-sdk:2.1.11"
```


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
public final class Define {

/** Version of the current component */
public static final String VERSION = "2.1.10";
public static final String VERSION = "2.1.11";

/** The range of http status codes for successful API requests */
public static final int[] SUCCESSFUL_CODE_RANGE;
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {

allprojects {
group 'com.aftership'
version '2.1.10'
version '2.1.11'

repositories {
mavenCentral()
Expand Down Expand Up @@ -110,7 +110,7 @@ project(':aftership-sample') {
dependencies {
// compile project(':aftership-sdk')
implementation "com.squareup.okhttp3:okhttp:${okhttpVersion}"
implementation "com.aftership:aftership-sdk:2.1.10"
implementation "com.aftership:aftership-sdk:2.1.11"
}

jar {
Expand Down

0 comments on commit 0a21162

Please sign in to comment.