Skip to content

Commit 61fa5a7

Browse files
author
Cameron Mace
authored
Places plugin 0.2 Release (#317)
* bumped mas version * release place plugin * fix version number * revert version * updated changelog * updated readme
1 parent b9a30af commit 61fa5a7

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

gradle/dependencies.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ ext {
88
]
99

1010
version = [
11-
mapboxMapSdk : '5.4.0',
12-
mapboxGeocoding : '3.0.0-beta.2',
13-
mapboxGeoJson : '3.0.0-beta.2',
11+
mapboxMapSdk : '5.4.1',
12+
mapboxGeocoding : '3.0.0-beta.3',
13+
mapboxGeoJson : '3.0.0-beta.3',
1414
mapboxServices : '2.2.9',
1515
lost : '3.0.4',
1616
autoValue : '1.5.3',

plugin-places/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
Mapbox welcomes participation and contributions from everyone.
44

5-
### 0.2.0 - TBD
6-
- Increased the search view button sizes to help capture when a user clicks the button.
5+
### 0.2.0 - February 26, 2018
6+
- Place Picker added [#262](https://github.com/mapbox/mapbox-plugins-android/pull/262)
7+
- Updated geocoding dependency [#261](https://github.com/mapbox/mapbox-plugins-android/pull/261)
8+
- Increased the search view button sizes to help capture when a user clicks the button. [#240](https://github.com/mapbox/mapbox-plugins-android/pull/240)
79

810
### 0.1.0 - December 22, 2017
911
- Initial release as a standalone package.

plugin-places/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ To use the places plugin, you include it in your `build.gradle` file.
1212
// In the root build.gradle file
1313
repositories {
1414
mavenCentral()
15+
google()
1516
}
1617
1718
...
1819
1920
// In the app build.gradle file
2021
dependencies {
21-
compile 'com.mapbox.mapboxsdk:mapbox-android-plugin-places:0.1.0'
22+
implementation 'com.mapbox.mapboxsdk:mapbox-android-plugin-places:0.2.0'
2223
}
2324
```
2425

@@ -28,14 +29,15 @@ The places plugin is published to Maven Central and nightly SNAPSHOTs are availa
2829
// In the root build.gradle file
2930
repositories {
3031
mavenCentral()
32+
google()
3133
maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
3234
}
3335
3436
...
3537
3638
// In the app build.gradle file
3739
dependencies {
38-
compile 'com.mapbox.mapboxsdk:mapbox-android-plugin-places:0.2.0-SNAPSHOT'
40+
implementation 'com.mapbox.mapboxsdk:mapbox-android-plugin-places:0.3.0-SNAPSHOT'
3941
}
4042
```
4143

plugin-places/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=0.2.0-SNAPSHOT
1+
VERSION_NAME=0.3.0-SNAPSHOT
22
POM_ARTIFACT_ID=mapbox-android-plugin-places
33
POM_NAME=Mapbox Android Places Plugin
44
POM_DESCRIPTION=Mapbox Android Places Plugin

0 commit comments

Comments
 (0)