Skip to content

Commit 01f57c0

Browse files
authored
release v1.3.0 (#182)
1 parent 42d33b1 commit 01f57c0

3 files changed

Lines changed: 24 additions & 4 deletions

File tree

libandroid/CHANGELOG.md

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

33
Mapbox welcomes participation and contributions from everyone.
44

5+
### v1.3.0
6+
7+
* Geocoding widget now supports the `bbox` parameter
8+
59
### v1.2.1
610

711
* Fixes regresion in `GeocoderAutoCompleteView`

libandroid/lib/build.gradle

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ dependencies {
3434
compile 'com.android.support:design:23.3.0'
3535

3636
// Mapbox Java Services (development)
37-
compile project(':libjava')
37+
// compile project(':libjava')
3838

3939
// Mapbox Java Services (release)
40-
// compile ('com.mapbox.mapboxsdk:mapbox-java-services:2.0.0-SNAPSHOT@jar') {
41-
// transitive=true
42-
// }
40+
compile ('com.mapbox.mapboxsdk:mapbox-java-services:2.0.0-SNAPSHOT@jar') {
41+
transitive=true
42+
}
4343

4444
// Testing
4545
testCompile 'junit:junit:4.12'
@@ -48,3 +48,12 @@ dependencies {
4848
apply from: 'gradle-javadoc.gradle'
4949
apply from: 'gradle-checkstyle.gradle'
5050
apply from: 'gradle-mvn-push.gradle'
51+
52+
// See: https://github.com/chrisbanes/gradle-mvn-push/issues/43#issuecomment-84140513
53+
afterEvaluate { project ->
54+
android.libraryVariants.all { variant ->
55+
tasks.androidJavadocs.doFirst {
56+
classpath += files(variant.javaCompile.classpath.files)
57+
}
58+
}
59+
}

libjava/CHANGELOG.md

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

33
Mapbox welcomes participation and contributions from everyone.
44

5+
### v1.3.0
6+
7+
* `RouteUtils` class to simplify work with `RouteLeg` objects
8+
* `geojson-tidy` integrated with Map Matching client
9+
* Added Turf's `midpoint`, `along`, and `within` methods
10+
* Added an example to showcase Turf's `lineslice`
11+
512
### v1.2.1
613

714
* Bring back `toString()` method in `CarmenFeature`

0 commit comments

Comments
 (0)