From 85dab9d022fe024ce17189c565a389b0328e8d0e Mon Sep 17 00:00:00 2001 From: Igor Bubelov Date: Sat, 25 Jan 2025 21:23:57 +0700 Subject: [PATCH] Bump version --- CHANGELOG.md | 20 ++++++++++++++++++++ app/build.gradle.kts | 4 ++-- app/src/main/kotlin/app/AppModule.kt | 2 +- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 406d7261..cea5f593 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [0.9.2] - 2025-01-25 + +- Add merchant boosts +- Add comments screen +- Speed up element search within an area +- Show user location marker +- Improve Material theme support +- Remove Google blob from APK +- Show more info on deleted elements +- Add Polish translation +- Add Brazilian translation +- Fix issue with reports +- Fix issue with distance units +- Fix crashes under certain conditions + +- Allow users to post merchant comments +- Fix issue with cold sync +- Add special icon for debug builds +- Improve error handling + ## [0.9.1] - 2025-01-18 - Allow users to post merchant comments diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a332bf9b..aed3cb49 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -13,8 +13,8 @@ android { applicationId = "org.btcmap" minSdk = 29 targetSdk = 35 - versionCode = 53 - versionName = "0.9.1" + versionCode = 54 + versionName = "0.9.2" } compileOptions { diff --git a/app/src/main/kotlin/app/AppModule.kt b/app/src/main/kotlin/app/AppModule.kt index d4edd22d..48afc6d0 100644 --- a/app/src/main/kotlin/app/AppModule.kt +++ b/app/src/main/kotlin/app/AppModule.kt @@ -41,7 +41,7 @@ import area_element.AreaElementQueries import area_element.AreaElementRepo val appModule = module { - single { Database(get().getDatabasePath("btcmap-2025-01-22.db").absolutePath).conn } + single { Database(get().getDatabasePath("btcmap-2025-01-25.db").absolutePath).conn } single { ApiImpl() }.bind(Api::class)