Skip to content

Commit 9e0bcce

Browse files
author
Cameron Mace
authored
Release v0.6.2 (#324)
* temporarily changed circle ci branch * [android] [auto] Update properties to version 0.6.2 in preparation for build. * changelog update * changed circle ci branch
1 parent 8a85e74 commit 9e0bcce

3 files changed

Lines changed: 18 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
Mapbox welcomes participation and contributions from everyone.
44

5+
### v0.6.2 - October 7, 2017
6+
7+
* Fixed an issue with the Location Engine not being activated correctly inside the Navigation-UI lib [#321](https://github.com/mapbox/mapbox-navigation-android/pull/321)
8+
* Fixed bottom sheet not getting placed correctly when the device is rotated [#320](https://github.com/mapbox/mapbox-navigation-android/pull/320)
9+
* Fixed missing reroute UI when a navigation session reroute occurs [#319](https://github.com/mapbox/mapbox-navigation-android/pull/319)
10+
* Added logic to detect if the user did a u-turn which would require a reroute [#312](https://github.com/mapbox/mapbox-navigation-android/pull/312)
11+
* Revert snap to route logic creating a new Location object which was causing location updates to occasionally get stuck at a maneuver point [#308](https://github.com/mapbox/mapbox-navigation-android/pull/308)
12+
* Restructured the project so the studio projects opened from the root folder rather than having it nested inside the `navigation` folder [#302](https://github.com/mapbox/mapbox-navigation-android/pull/302)
13+
* Notifications fixed for Android Oreo [#298](https://github.com/mapbox/mapbox-navigation-android/pull/298)
14+
* OSRM-text-instructions removed [#288](https://github.com/mapbox/mapbox-navigation-android/pull/288)
15+
* General code cleanup [#287](https://github.com/mapbox/mapbox-navigation-android/pull/287)
16+
* Day and night mode and theme switching functionality added inside the Navigation-UI library [#286](https://github.com/mapbox/mapbox-navigation-android/pull/286)
17+
* Metric reroute added - [#296](https://github.com/mapbox/mapbox-navigation-android/pull/296)
18+
519
### v0.6.1 - September 28, 2017
620
* Telemetry Updates
721

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
- deploy:
116116
name: Publish Navigation SDK To Maven Central
117117
command: |
118-
if [ "${CIRCLE_BRANCH}" == "fix-snapshot" ]; then
118+
if [ "${CIRCLE_BRANCH}" == "master" ]; then
119119
make publish ;
120120
fi
121121
- store_artifacts:

scripts/release.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,10 @@
5656
ALLOWED_PRE_RELEASE = ['beta']
5757

5858
# We get the default version from here
59-
MAPBOX_GL_ANDROID_SDK_PATH = '../navigation'
60-
GRADLE_PROPERTIES_PATH = '%s/gradle.properties' % MAPBOX_GL_ANDROID_SDK_PATH
59+
GRADLE_PROPERTIES_PATH = '../gradle.properties'
6160
GRADLE_TOKEN = 'VERSION_NAME='
6261

63-
# Bitrise
62+
# Circle CI
6463
# Triggers a new build, returns a summary of the build
6564
URL_CIRCLECI = 'https://circleci.com/api/v1.1/project/github/mapbox/mapbox-gl-native/tree/' # + :branch
6665

@@ -144,7 +143,7 @@ def publish_final(branch, version):
144143
if dirty_gradle:
145144
git_add(path=GRADLE_PROPERTIES_PATH)
146145
git_commit_and_push(branch=branch, version=version)
147-
do_bitrise_request(build_params={'branch': branch, 'workflow_id': 'scheduled'})
146+
do_circleci_request(branch=branch)
148147

149148
#
150149
# Utils

0 commit comments

Comments
 (0)