Skip to content

Commit

Permalink
Merge pull request #756 from ably/release/1.2.1
Browse files Browse the repository at this point in the history
Release/1.3.0
  • Loading branch information
ikbalkaya authored Sep 9, 2022
2 parents 5e688c4 + 48636b4 commit 4c436d1
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 6 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Change log

## [1.3.0](https://github.com/ably/ably-asset-tracking-android/tree/1.3.0)

[Full Changelog](https://github.com/ably/ably-asset-tracking-android/compare/v1.2.0...1.3.0)

**Implemented enhancements:**

- Upgrade Mapbox Nav SDK to the GA 2.7.0 version [\#742](https://github.com/ably/ably-asset-tracking-android/issues/742)

**Fixed bugs:**

- CoreLocationAnimator progress may be bigger than 100% [\#751](https://github.com/ably/ably-asset-tracking-android/issues/751)
- Fix the waitForChannelReconnection\(\) method implementation [\#744](https://github.com/ably/ably-asset-tracking-android/issues/744)

**Merged pull requests:**

- Expose publisher presence flow from the subscriber SDK [\#754](https://github
.com/ably/ably-asset-tracking-android/pull/754) ([KacperKluka](https://github.com/KacperKluka))
- Fix location animator progress exceeding 100% [\#752](https://github.com/ably/ably-asset-tracking-android/pull/752) ([KacperKluka](https://github.com/KacperKluka))
- Update builder examples for publisher and subscriber in the README [\#750](https://github.com/ably/ably-asset-tracking-android/pull/750) ([KacperKluka](https://github.com/KacperKluka))
- Fix the waitForChannelReconnection\(\) method implementation [\#749](https://github.com/ably/ably-asset-tracking-android/pull/749) ([KacperKluka](https://github.com/KacperKluka))
- Upgrade Mapbox to 2.7.0 [\#748](https://github.com/ably/ably-asset-tracking-android/pull/748) ([KacperKluka](https://github.com/KacperKluka))
- Add known limitations section to the README [\#747](https://github.com/ably/ably-asset-tracking-android/pull/747) ([KacperKluka](https://github.com/KacperKluka))

## [1.2.0](https://github.com/ably/ably-asset-tracking-android/tree/v1.2.0)

[Full Changelog](https://github.com/ably/ably-asset-tracking-android/compare/v1.1.1...v1.2.0)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,13 @@ you can then add the Ably Asset Tracking dependency that you require in your Gra
```groovy
dependencies {
// Publishers, developing in Kotlin, will need the Publishing SDK
implementation 'com.ably.tracking:publishing-sdk:1.2.0'
implementation 'com.ably.tracking:publishing-sdk:1.3.0'
// Subscribers, developing in Kotlin, will need the Subscribing SDK
implementation 'com.ably.tracking:subscribing-sdk:1.2.0'
implementation 'com.ably.tracking:subscribing-sdk:1.3.0'
// Subscribers, developing in Kotlin, can optionally use the UI utilities
implementation 'com.ably.tracking:ui-sdk:1.2.0'
implementation 'com.ably.tracking:ui-sdk:1.3.0'
}
```

Expand Down Expand Up @@ -354,7 +354,7 @@ Firstly, you have to exclude the notification module from Mapbox Navigation SDK

```groovy
// The Ably Asset Tracking Publisher SDK for Android.
implementation ('com.ably.tracking:publishing-sdk:1.2.0')
implementation ('com.ably.tracking:publishing-sdk:1.3.0')
// The Mapbox Navigation SDK.
implementation ('com.mapbox.navigation:android:2.7.0') {
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ allprojects {

// version MUST conform to the Semantic Versioning Specification (https://semver.org/) version 2.0.0
// on incrementing this value, ensure to also increment versionCode in android defaultConfig (also in this file)
version = '1.2.0'
version = '1.3.0'

// Values used to publish the SDK to maven repositories.
ext {
Expand Down Expand Up @@ -111,7 +111,7 @@ subprojects {
// projects in this repository. Therefore, this same version number is used for SDK and
// example app projects alike.
// - versionCode MUST be incremented by 1 for each release from the main branch
versionCode 28
versionCode 29
versionName version

testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Expand Down

0 comments on commit 4c436d1

Please sign in to comment.