Skip to content

Commit

Permalink
Merge pull request #1050 from ably/release/1.6.5
Browse files Browse the repository at this point in the history
Release/1.7.0
  • Loading branch information
AndyTWF authored Apr 27, 2023
2 parents c63f3e0 + 86bca2b commit a89dc8a
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 6 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# Change log

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

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

**Implemented enhancements:**

- Improved Publisher Presence: Amalgamate History and Emit Events [\#1038](https://github.com/ably/ably-asset-tracking-android/issues/1038)
- Improved Publisher Presence: Network Connectivity Tests [\#1037](https://github.com/ably/ably-asset-tracking-android/issues/1037)
- Improved Publisher Presence: Presence History [\#1036](https://github.com/ably/ably-asset-tracking-android/issues/1036)
- Improved Publisher Presence: Boilerplate [\#1035](https://github.com/ably/ably-asset-tracking-android/issues/1035)

**Fixed bugs:**

- Extended disconnection after long period of connectivity [\#1039](https://github.com/ably/ably-asset-tracking-android/issues/1039)

**Closed issues:**

- Add Status to Readme [\#1048](https://github.com/ably/ably-asset-tracking-android/issues/1048)
- Subscriber NetworkConnectivityTests: EnterFailedWithNonFatalNack [\#1017](https://github.com/ably/ably-asset-tracking-android/issues/1017)
- Subscriber NetworkConnectivityTests: UpdateFailedWithNonFatalNack [\#1018](https://github.com/ably/ably-asset-tracking-android/issues/1018)
- Subscriber NetworkConnectivityTests: TCPConnectionUnresponsive [\#1016](https://github.com/ably/ably-asset-tracking-android/issues/1016)

**Merged pull requests:**
- Add beta notice to readme [\#1049](https://github.com/ably/ably-asset-tracking-android/pull/1049) ([AndyTWF](https://github.com/AndyTWF))
- additional faults enabled in subscribers NetworkConnectivityTests [\#1046](https://github.com/ably/ably-asset-tracking-android/pull/1046) ([davyskiba](https://github.com/davyskiba))
- Extended publisher presence API [\#1045](https://github.com/ably/ably-asset-tracking-android/pull/1045) ([AndyTWF](https://github.com/AndyTWF))
- Bump ably-java to 1.2.27 [\#1044](https://github.com/ably/ably-asset-tracking-android/pull/1044) ([AndyTWF](https://github.com/AndyTWF))
- Publisher presence events [\#1042](https://github.com/ably/ably-asset-tracking-android/pull/1042) ([AndyTWF](https://github.com/AndyTWF))
- Disallow online state for subscriber active fatal fault [\#1041](https://github.com/ably/ably-asset-tracking-android/pull/1041) ([lawrence-forooghian](https://github.com/lawrence-forooghian))
- Error info constants [\#1040](https://github.com/ably/ably-asset-tracking-android/pull/1040) ([AndyTWF](https://github.com/AndyTWF))
- Add network connectivity tests assertions on new publisher presence state API [\#1034](https://github.com/ably/ably-asset-tracking-android/pull/1034) ([lawrence-forooghian](https://github.com/lawrence-forooghian))
- Fetch history [\#1033](https://github.com/ably/ably-asset-tracking-android/pull/1033) ([davyskiba](https://github.com/davyskiba))
- Subscriber extended publisher presence [\#1032](https://github.com/ably/ably-asset-tracking-android/pull/1032) ([AndyTWF](https://github.com/AndyTWF))
- Subscriber connection unresponsive [\#1031](https://github.com/ably/ably-asset-tracking-android/pull/1031) ([davyskiba](https://github.com/davyskiba))
- Subscriber enter failed fault [\#1023](https://github.com/ably/ably-asset-tracking-android/pull/1023) ([davyskiba](https://github.com/davyskiba))

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

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

Expand Down Expand Up @@ -367,7 +367,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.4')
implementation ('com.ably.tracking:publishing-sdk:1.7.0')
// The Mapbox Navigation SDK.
implementation ('com.mapbox.navigation:android:2.11.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.4'
version = '1.7.0'

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 41
versionCode 42
versionName version

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

0 comments on commit a89dc8a

Please sign in to comment.