diff --git a/CHANGELOG.md b/CHANGELOG.md index 46e955c..37e6f37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog An app with widgets for the great [openSenseMap](https://opensensemap.org) project. +## 0.6.0 (2011-06-13) +Thanks to [Tobias Preuss](https://github.com/johnjohndoe) for contributing the below changes. +- Update of several dependencies +- Build: Use gradle-versions-plugin to detect version updates +- Build: Debug build variant with different package name to enable parallel install + ## 0.4.1 (2019-04-10) #### Fixed - Update mapbox dependency to fix a crash with the map view diff --git a/README.md b/README.md index da48e7d..305a1c7 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.1` is available in the [Play Store](https://play.google.com/store/apps/details?id=de.codefor.karlsruhe.opensense). +The current version `0.6.0` 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 b073c7a..3979d59 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 @@ -2,10 +2,10 @@ package de.codefor.karlsruhe.opensense.build object BuildConfig { val minSdkVersion = 19 - val targetSdkVersion = 28 + val targetSdkVersion = 30 val compileSdkVersion = targetSdkVersion - val versionCode = 5 - val versionName = "0.4.1" + val versionCode = 6 + val versionName = "0.6.0" val kotlinVersion = "1.4.31"