diff --git a/CHANGELOG.md b/CHANGELOG.md index 7347678e3e0..33922946561 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ Mapbox welcomes participation and contributions from everyone. +### v0.36.0 - April 17, 2019 + +Note: This release breaks `SEMVER` / contains API breaking changes. Please consult this [migration guide](https://github.com/mapbox/mapbox-navigation-android/wiki/0.36.0-Migration-Guide) for the necessary updates required. + +* Prevent RouteLeg list access for current step creation [#1896](https://github.com/mapbox/mapbox-navigation-android/pull/1896) +* Create NavigationViewRouter timeout to unblock routing state [#1888](https://github.com/mapbox/mapbox-navigation-android/pull/1888) +* Bump mapbox-android-sdk version to 7.3.2 [#1894](https://github.com/mapbox/mapbox-navigation-android/pull/1894) +* Add NavigationMapRoute attribute for styling route line cap expression [#1818](https://github.com/mapbox/mapbox-navigation-android/pull/1818) +* Update navigator to 6.1.3 [#1892](https://github.com/mapbox/mapbox-navigation-android/pull/1892) +* [SEMVER] Add NavigationMapboxMap#addCustomMarker for usage of SymbolManager [#1891](https://github.com/mapbox/mapbox-navigation-android/pull/1891) +* Fix notification and banner ETAs not in sync [#1889](https://github.com/mapbox/mapbox-navigation-android/pull/1889) +* Bump mapbox-navigation-native version to 6.1.2 [#1885](https://github.com/mapbox/mapbox-navigation-android/pull/1885) +* Add offline version check to Navigation View Router [#1864](https://github.com/mapbox/mapbox-navigation-android/pull/1864) +* Add offline options to Navigation Launcher [#1862](https://github.com/mapbox/mapbox-navigation-android/pull/1862) +* [SEMVER] Add dynamic offline routing to NavigationView [#1829](https://github.com/mapbox/mapbox-navigation-android/pull/1829) + ### v0.35.0 - April 12, 2019 * Github PR template refactor [#1879](https://github.com/mapbox/mapbox-navigation-android/pull/1879) @@ -15,7 +31,7 @@ Mapbox welcomes participation and contributions from everyone. ### v0.34.0 - April 2, 2019 -Note: This release breaks `SEMVER` / contains API breaking changes. Please consult this [migration guide](https://github.com/mapbox/mapbox-navigation-android/wiki/0.34.0-Migration-Guide) for the necessary updates required. +Note: This release breaks `SEMVER` / contains API breaking changes. Please consult this [migration guide](https://github.com/mapbox/mapbox-navigation-android/wiki/0.34.0-Migration-Guide) for the necessary updates required. * Add remove offline routing tiles by bounding box functionality [#1850](https://github.com/mapbox/mapbox-navigation-android/pull/1850) * Update LocationComponent to use LocationComponentActivationOptions [#1852](https://github.com/mapbox/mapbox-navigation-android/pull/1852) diff --git a/README.md b/README.md index 6b184677b64..9f1ca41c1d7 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,13 @@ If you are looking to include this inside your project, please take a look at [t Add this snippet to your `build.gradle` file to use this SDK (`libandroid-navigation`): ``` -implementation 'com.mapbox.mapboxsdk:mapbox-android-navigation:0.35.0' +implementation 'com.mapbox.mapboxsdk:mapbox-android-navigation:0.36.0' ``` And for `libandroid-navigation-ui`: ``` -implementation 'com.mapbox.mapboxsdk:mapbox-android-navigation-ui:0.35.0' +implementation 'com.mapbox.mapboxsdk:mapbox-android-navigation-ui:0.36.0' ``` **Note**: When using the UI library, you _do not_ need to add both dependencies. The UI library will automatically pull in `libandroid-navigation`. @@ -70,7 +70,7 @@ repositories { } dependencies { - implementation 'com.mapbox.mapboxsdk:mapbox-android-navigation:0.36.0-SNAPSHOT' + implementation 'com.mapbox.mapboxsdk:mapbox-android-navigation:0.37.0-SNAPSHOT' } ``` diff --git a/gradle.properties b/gradle.properties index 66fd890a659..a90f3f36e0c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Project-wide Gradle settings. -VERSION_NAME=0.36.0-SNAPSHOT +VERSION_NAME=0.37.0-SNAPSHOT GROUP=com.mapbox.mapboxsdk POM_URL=https://github.com/mapbox/mapbox-navigation-android