Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions libandroid/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Mapbox welcomes participation and contributions from everyone.

### v1.3.0

* Geocoding widget now supports the `bbox` parameter

### v1.2.1

* Fixes regresion in `GeocoderAutoCompleteView`
Expand Down
17 changes: 13 additions & 4 deletions libandroid/lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ dependencies {
compile 'com.android.support:design:23.3.0'

// Mapbox Java Services (development)
compile project(':libjava')
// compile project(':libjava')

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

// Testing
testCompile 'junit:junit:4.12'
Expand All @@ -48,3 +48,12 @@ dependencies {
apply from: 'gradle-javadoc.gradle'
apply from: 'gradle-checkstyle.gradle'
apply from: 'gradle-mvn-push.gradle'

// See: https://github.com/chrisbanes/gradle-mvn-push/issues/43#issuecomment-84140513
afterEvaluate { project ->
android.libraryVariants.all { variant ->
tasks.androidJavadocs.doFirst {
classpath += files(variant.javaCompile.classpath.files)
}
}
}
7 changes: 7 additions & 0 deletions libjava/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

Mapbox welcomes participation and contributions from everyone.

### v1.3.0

* `RouteUtils` class to simplify work with `RouteLeg` objects
* `geojson-tidy` integrated with Map Matching client
* Added Turf's `midpoint`, `along`, and `within` methods
* Added an example to showcase Turf's `lineslice`

### v1.2.1

* Bring back `toString()` method in `CarmenFeature`
Expand Down