Skip to content

Commit

Permalink
Location Layer 0.4 release (#314)
Browse files Browse the repository at this point in the history
* publish release

* revert version back to snapshoit

* updated changelog

* Updated readme
  • Loading branch information
Cameron Mace authored Feb 26, 2018
1 parent 74f4726 commit b9a30af
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 14 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Each Mapbox plugin for Android has a separate changelog that highlights changes relevant to the plugin:

* [Location layer plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/locationlayer/CHANGELOG.md)
* [Building plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/building/CHANGELOG.md)
* [Traffic plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/traffic/CHANGELOG.md)
* [GeoJSON plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/geojson/CHANGELOG.md)
* [Location layer plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/plugin-locationlayer/CHANGELOG.md)
* [Building plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/plugin-building/CHANGELOG.md)
* [Traffic plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/plugin-traffic/CHANGELOG.md)
* [GeoJSON plugin](https://github.com/mapbox/mapbox-plugins-android/tree/master/plugin-geojson/CHANGELOG.md)
17 changes: 13 additions & 4 deletions plugin-locationlayer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,19 @@

Mapbox welcomes participation and contributions from everyone.

### 0.4.0 - TBD
- Assets have be updated and added a 3D effect []()
- Fixed issue with accuracy ring being initialized with value greater than zero []()
- `lastLocation()` now returns the location variable directly []()
### 0.5.0 - TBD
- Location layer accuracy visibility issue fix [#306](https://github.com/mapbox/mapbox-plugins-android/pull/306)

### 0.4.0 - February 26, 2018
- LocationLayerOptions class added allowing dynamic styling of layer [#267](https://github.com/mapbox/mapbox-plugins-android/pull/267)
- Stale location mode added [#264](https://github.com/mapbox/mapbox-plugins-android/pull/264)
- Assets have be updated and added a 3D effect [#245](https://github.com/mapbox/mapbox-plugins-android/pull/245)
- All assets and attributes are now prefixed [#263](https://github.com/mapbox/mapbox-plugins-android/pull/263)
- Fixed issue with accuracy ring being initialized with value greater than zero [#245](https://github.com/mapbox/mapbox-plugins-android/pull/245)
- `lastLocation()` now returns the location variable directly [#245](https://github.com/mapbox/mapbox-plugins-android/pull/245)
- Replacing LocationEngine now updates the listener to use the new engine [#292](https://github.com/mapbox/mapbox-plugins-android/pull/292)
- Cancel animation as part of stopping the animation [#247](https://github.com/mapbox/mapbox-plugins-android/pull/247)


### 0.3.0 - December 22, 2017
- Change accuracy ring from fill layer to a circle layer [#186](https://github.com/mapbox/mapbox-plugins-android/pull/186)
Expand Down
10 changes: 5 additions & 5 deletions plugin-locationlayer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ To use the location layer plugin, you include it in your `build.gradle` file.
// In the root build.gradle file
repositories {
mavenCentral()
maven { url 'https://maven.google.com' }
google()
}
...
// In the app build.gradle file
dependencies {
compile 'com.mapbox.mapboxsdk:mapbox-android-plugin-locationlayer:0.3.0'
implementation 'com.mapbox.mapboxsdk:mapbox-android-plugin-locationlayer:0.4.0'
}
```

Expand All @@ -27,15 +27,15 @@ The location layer plugin is published to Maven Central and nightly SNAPSHOTs ar
// In the root build.gradle file
repositories {
mavenCentral()
maven { url 'https://maven.google.com' }
google()
maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
}
...
// In the app build.gradle file
dependencies {
compile 'com.mapbox.mapboxsdk:mapbox-android-plugin-locationlayer:0.4.0-SNAPSHOT'
implementation 'com.mapbox.mapboxsdk:mapbox-android-plugin-locationlayer:0.5.0-SNAPSHOT'
}
```

Expand All @@ -47,7 +47,7 @@ dependencies {

## Help and Usage

This repository includes an app that shows how to use each plugins in this repository. [Check out its code](https://github.com/mapbox/mapbox-plugins-android/tree/master/plugins/app/src/main/java/com/mapbox/mapboxsdk/plugins/testapp) for ready-to-use snippets.
This repository includes an app that shows how to use each plugins in this repository. [Check out its code](https://github.com/mapbox/mapbox-plugins-android/tree/master/app/src/main/java/com/mapbox/mapboxsdk/plugins/testapp) for ready-to-use snippets.

We'd love to [hear your feedback](https://github.com/mapbox/mapbox-plugins-android/issues) as we build more plugins and learn how you use them.

Expand Down
2 changes: 1 addition & 1 deletion plugin-locationlayer/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=0.4.0-SNAPSHOT
VERSION_NAME=0.5.0-SNAPSHOT
POM_ARTIFACT_ID=mapbox-android-plugin-locationlayer
POM_NAME=Mapbox Android Plugins
POM_DESCRIPTION=Mapbox Android Plugins (Location Layer)
Expand Down

0 comments on commit b9a30af

Please sign in to comment.