Skip to content

Commit

Permalink
Merge pull request #992 from ably/release/1.6.2
Browse files Browse the repository at this point in the history
Release/1.6.2
  • Loading branch information
ikbalkaya authored Feb 3, 2023
2 parents a0f5e29 + aa8262d commit 1a1869e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change log

## [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)

**Merged pull requests:**

- Downgrade google-play-services-location version to 17.1.0 [\#991](https://github.com/ably/ably-asset-tracking-android/pull/991) ([davyskiba](https://github.com/davyskiba))

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

This release adds additional enhancements to operational stability, for publishers in particular, when running on a devices with unreliable network connectivity.
Expand Down
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ The release process must include the following steps:

1. Ensure that all work intended for this release has landed to `main`
2. Create a release branch named like `release/1.2.3`
3. Add a commit to bump the version number - this commit should also include an update to the root `README.md`, where the latest version number is explicitly referenced
3. Add a commit to bump the version number - this commit should also include an update to the root `README.md`,where
the latest version number is explicitly referenced. You must also bump version code by 1 for each version bump.
4. Add a commit to update the change log
5. Push the release branch to GitHub
6. Open a PR for the release against the release branch you just pushed
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.1'
implementation 'com.ably.tracking:publishing-sdk:1.6.2'
// Subscribers, developing in Kotlin, will need the Subscribing SDK
implementation 'com.ably.tracking:subscribing-sdk:1.6.1'
implementation 'com.ably.tracking:subscribing-sdk:1.6.2'
// Subscribers, developing in Kotlin, can optionally use the UI utilities
implementation 'com.ably.tracking:ui-sdk:1.6.1'
implementation 'com.ably.tracking:ui-sdk:1.6.2'
}
```

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.1')
implementation ('com.ably.tracking:publishing-sdk:1.6.2')
// 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.1'
version = '1.6.2'

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 38
versionCode 39
versionName version

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

0 comments on commit 1a1869e

Please sign in to comment.