diff --git a/CHANGELOG.md b/CHANGELOG.md index 930dcfb..46e955c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog An app with widgets for the great [openSenseMap](https://opensensemap.org) project. +## 0.4.1 (2019-04-10) +#### Fixed +- Update mapbox dependency to fix a crash with the map view + ## 0.4.0 (2019-04-10) Update build script, API calls and migrate to Gradle Kotlin DSL diff --git a/README.md b/README.md index 4682275..da48e7d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ An app with widgets for the great [openSenseMap](https://opensensemap.org) project. It's still work in progress and in an early stage of development. -The current version `0.4.0` is available in the [Play Store](https://play.google.com/store/apps/details?id=de.codefor.karlsruhe.opensense). +The current version `0.4.1` is available in the [Play Store](https://play.google.com/store/apps/details?id=de.codefor.karlsruhe.opensense). ## Features diff --git a/buildSrc/src/main/kotlin/de/codefor/karlsruhe/opensense/build/Config.kt b/buildSrc/src/main/kotlin/de/codefor/karlsruhe/opensense/build/Config.kt index 931f9df..e498441 100644 --- a/buildSrc/src/main/kotlin/de/codefor/karlsruhe/opensense/build/Config.kt +++ b/buildSrc/src/main/kotlin/de/codefor/karlsruhe/opensense/build/Config.kt @@ -4,8 +4,8 @@ object BuildConfig { val minSdkVersion = 19 val targetSdkVersion = 28 val compileSdkVersion = targetSdkVersion - val versionCode = 4 - val versionName = "0.4.0" + val versionCode = 5 + val versionName = "0.4.1" val buildToolsVersion = "28.0.3" val kotlinVersion = "1.3.21" @@ -16,7 +16,7 @@ object BuildConfig { val rxAndroidVersion = "2.1.1" val rxJavaVersion = "2.2.7" val retrofitVersion = "2.5.0" - val mapboxVersion = "7.2.0" + val mapboxVersion = "7.3.0" val androidPlotVersion = "1.5.6" val junitVersion = "4.12" val espressoVersion = "3.0.1"