From 69f6bf1680d96be99214a4c639051eb9e9efea75 Mon Sep 17 00:00:00 2001 From: Quintin Willison Date: Mon, 7 Nov 2022 15:38:18 +0000 Subject: [PATCH 1/3] Bump version (patch). --- README.md | 8 ++++---- build.gradle | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2f5b0bffa..b50305da8 100644 --- a/README.md +++ b/README.md @@ -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.4.0' + implementation 'com.ably.tracking:publishing-sdk:1.4.1' // Subscribers, developing in Kotlin, will need the Subscribing SDK - implementation 'com.ably.tracking:subscribing-sdk:1.4.0' + implementation 'com.ably.tracking:subscribing-sdk:1.4.1' // Subscribers, developing in Kotlin, can optionally use the UI utilities - implementation 'com.ably.tracking:ui-sdk:1.4.0' + implementation 'com.ably.tracking:ui-sdk:1.4.1' } ``` @@ -356,7 +356,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.4.0') +implementation ('com.ably.tracking:publishing-sdk:1.4.1') // The Mapbox Navigation SDK. implementation ('com.mapbox.navigation:android:2.8.0') { diff --git a/build.gradle b/build.gradle index 851f60c64..cb3403298 100644 --- a/build.gradle +++ b/build.gradle @@ -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.4.0' + version = '1.4.1' // Values used to publish the SDK to maven repositories. ext { @@ -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 32 + versionCode 33 versionName version testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' From ad5dd3c4046608a682d2248249775a911b37e659 Mon Sep 17 00:00:00 2001 From: Quintin Willison Date: Mon, 7 Nov 2022 15:55:23 +0000 Subject: [PATCH 2/3] Fix broken URLs in previous release titles. --- CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91846f41c..847c44e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change log -## [1.4.0](https://github.com/ably/ably-asset-tracking-android/tree/1.4.0) +## [1.4.0](https://github.com/ably/ably-asset-tracking-android/tree/v1.4.0) [Full Changelog](https://github.com/ably/ably-asset-tracking-android/compare/v1.4.0-rc.2...v1.4.0) @@ -17,7 +17,7 @@ - Refactor the event queue in the CoreSubscriber [\#660](https://github.com/ably/ably-asset-tracking-android/issues/660) -## [1.4.0-rc.2](https://github.com/ably/ably-asset-tracking-android/tree/1.4.0-rc.2) +## [1.4.0-rc.2](https://github.com/ably/ably-asset-tracking-android/tree/v1.4.0-rc.2) [Full Changelog](https://github.com/ably/ably-asset-tracking-android/compare/v1.4.0-rc.1...v1.4.0-rc.2) @@ -25,7 +25,7 @@ - Make the client ID an optional parameter if users use a token-based auth [\#766](https://github.com/ably/ably-asset-tracking-android/issues/766) -## [1.4.0-rc.1](https://github.com/ably/ably-asset-tracking-android/tree/1.4.0-rc.1) +## [1.4.0-rc.1](https://github.com/ably/ably-asset-tracking-android/tree/v1.4.0-rc.1) Version 1.4.0 of the Ably Asset Tracking SDKs for Android uses the Mapbox Navigation SDK in version 2.8.0 which enables users to use it together with the newest Mapbox Map SDK in version 10.8.0. @@ -40,7 +40,7 @@ which enables users to use it together with the newest Mapbox Map SDK in version - Mapbox navigation dependency version updated to 2.8.0-rc.2 [\#761](https://github.com/ably/ably-asset-tracking-android/pull/761) ([davyskiba](https://github.com/davyskiba)) -## [1.3.0](https://github.com/ably/ably-asset-tracking-android/tree/1.3.0) +## [1.3.0](https://github.com/ably/ably-asset-tracking-android/tree/v1.3.0) [Full Changelog](https://github.com/ably/ably-asset-tracking-android/compare/v1.2.0...1.3.0) From a022af436d4e147adf1f2c4f2ddb6c3a4c7b15a5 Mon Sep 17 00:00:00 2001 From: Quintin Willison Date: Mon, 7 Nov 2022 15:59:02 +0000 Subject: [PATCH 3/3] Add change log entry for version 1.4.1. --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 847c44e72..a2ee676b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change log +## [1.4.1](https://github.com/ably/ably-asset-tracking-android/tree/v1.4.1) + +[Full Changelog](https://github.com/ably/ably-asset-tracking-android/compare/v1.4.0...v1.4.1) + +**Improved Subscriber behaviour:** + +- Wait for the presence data sync before returning a subscriber instance [\#792](https://github.com/ably/ably-asset-tracking-android/issues/792), + implemented in [\#794](https://github.com/ably/ably-asset-tracking-android/pull/794) ([KacperKluka](https://github.com/KacperKluka)) + ## [1.4.0](https://github.com/ably/ably-asset-tracking-android/tree/v1.4.0) [Full Changelog](https://github.com/ably/ably-asset-tracking-android/compare/v1.4.0-rc.2...v1.4.0)