Skip to content

Commit

Permalink
Merge pull request #1001 from ably/release/1.6.3
Browse files Browse the repository at this point in the history
Release/1.6.3
  • Loading branch information
AndyTWF authored Feb 14, 2023
2 parents 2e490ab + 4a7379b commit 4d13ae7
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 6 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Change log

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

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

**Fixed bugs:**

- Re-adding a trackable results in trackable being offline [\#989](https://github.com/ably/ably-asset-tracking-android/issues/989)
- Re-added trackable does not enter or subscribe to presenc [\#988](https://github.com/ably/ably-asset-tracking-android/issues/988)
- Re-adding trackable immediately after removing it causes NullPointerException [\#984](https://github.com/ably/ably-asset-tracking-android/issues/984)
- Exceptions thrown inside a block passed to `DefaultAbly`’s `scope.launch()` are suppressed [\#909](https://github.com/ably/ably-asset-tracking-android/issues/909)

**Closed issues:**

- Remove `ConnectionException` from docstrings of `Publisher.add/track` [\#995](https://github.com/ably/ably-asset-tracking-android/issues/995)
- Improve the version `1.5.1` to `1.6.0` migration guide [\#974](https://github.com/ably/ably-asset-tracking-android/issues/974)
- Remove workaround for handling failed connection when adding a trackable [\#898](https://github.com/ably/ably-asset-tracking-android/issues/898)

**Merged pull requests:**

- Remove `ConnectionException` from docstrings of `Publisher.add/track` [\#997](https://github.com/ably/ably-asset-tracking-android/pull/997) ([lawrence-forooghian](https://github.com/lawrence-forooghian))
- Add migration guides for 1.6.0 and 1.6.1 [\#996](https://github.com/ably/ably-asset-tracking-android/pull/996) ([lawrence-forooghian](https://github.com/lawrence-forooghian))
- Test exceptions [\#994](https://github.com/ably/ably-asset-tracking-android/pull/994) ([davyskiba](https://github.com/davyskiba))
- Fix issues re-adding trackable [\#990](https://github.com/ably/ably-asset-tracking-android/pull/990) ([AndyTWF](https://github.com/AndyTWF))

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

[Full Changelog](https://github.com/ably/ably-asset-tracking-android/compare/v1.6.1...v1.6.2)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,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.6.2'
implementation 'com.ably.tracking:publishing-sdk:1.6.3'
// Subscribers, developing in Kotlin, will need the Subscribing SDK
implementation 'com.ably.tracking:subscribing-sdk:1.6.2'
implementation 'com.ably.tracking:subscribing-sdk:1.6.3'
// Subscribers, developing in Kotlin, can optionally use the UI utilities
implementation 'com.ably.tracking:ui-sdk:1.6.2'
implementation 'com.ably.tracking:ui-sdk:1.6.3'
}
```

Expand Down Expand Up @@ -361,7 +361,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.6.2')
implementation ('com.ably.tracking:publishing-sdk:1.6.3')
// The Mapbox Navigation SDK.
implementation ('com.mapbox.navigation:android:2.10.0') {
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,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.6.2'
version = '1.6.3'

if (githubBuildMetadata) {
version += "+${githubBuildMetadata}"
Expand Down Expand Up @@ -152,7 +152,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 39
versionCode 40
versionName version

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

0 comments on commit 4d13ae7

Please sign in to comment.