Skip to content

Commit

Permalink
prepare for 2.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ticofab committed Jul 10, 2021
1 parent abae314 commit 4ff0039
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## Version 2.0.1 *(Jul 10th 2021)*

* Make the Joda library available to users without adding it explicitly (which fixes [#37](https://github.com/ticofab/android-gpx-parser/issues/37)) - thanks [Markus Deutsch](https://github.com/moopat)!
* Remove the useless resource folder from the example app - thanks [Tom Sullivan](https://github.com/msbit)!
* Updates the gradle plugin to 4.2.2

## Version 2.0.0 *(Apr 26th 2021)*

Breaking change! Triggered by Bintray sunsetting JCenter, I seized the opportunity to
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ allprojects {

```groovy
dependencies {
implementation 'com.github.ticofab:android-gpx-parser:2.0.0'
implementation 'com.github.ticofab:android-gpx-parser:2.0.1'
}
```

Expand Down
7 changes: 5 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.github.ticofab:android-gpx-parser:2.0.0'
implementation 'androidx.appcompat:appcompat:1.3.0'

// line used for local development
// implementation project(':parser')
implementation 'com.github.ticofab:android-gpx-parser:2.0.1'
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'com.android.tools.build:gradle:4.2.2'
}
}

Expand Down

0 comments on commit 4ff0039

Please sign in to comment.