From 3a29b9e0ce5bb5dc52edb2cabd3b5a0045173b97 Mon Sep 17 00:00:00 2001 From: davidtakac <35954251+davidtakac@users.noreply.github.com> Date: Thu, 1 Dec 2022 09:05:18 +0100 Subject: [PATCH] Bump to 3.0.0, update CHANGELOG.md --- androidApp/CHANGELOG.md | 7 +++++-- androidApp/build.gradle.kts | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/androidApp/CHANGELOG.md b/androidApp/CHANGELOG.md index 475a792c..1df97f93 100644 --- a/androidApp/CHANGELOG.md +++ b/androidApp/CHANGELOG.md @@ -12,7 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - iOS support - OpenWeatherMap as forecast provider -## [Unreleased] +## [3.0.0] - 2022-12-01 +### Note +- Uninstall previous version before installing this one ### Changed - Make app mood a business rule - Allow external feels like and mood @@ -20,8 +22,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Feels like calculated by wind chill - Refactored to Kotlin Multiplatform Mobile - Coming item expands to card +- Coming item has morning, afternoon, evening and night icons - Add dark mode icons -- Better weather icon +- Better app icon ### Fixed - Hourly and coming data cells wider than they need to be - Current hour pairs too close together diff --git a/androidApp/build.gradle.kts b/androidApp/build.gradle.kts index d0d0fdc1..28595ce1 100644 --- a/androidApp/build.gradle.kts +++ b/androidApp/build.gradle.kts @@ -16,9 +16,9 @@ android { applicationId = "hr.dtakac.prognoza" minSdk = AndroidConfig.minSdk targetSdk = AndroidConfig.targetSdk - versionCode = 12 + versionCode = 13 // Before pushing to release, make sure this value matches the latest one in CHANGELOG.md - versionName = "2.2.2" + versionName = "3.0.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" resourceConfigurations.addAll(listOf("en", "hr")) }