From ca749e340a974f3a2900255b79beafa3c729f809 Mon Sep 17 00:00:00 2001 From: Igor Bubelov Date: Thu, 24 Oct 2024 14:49:09 +0700 Subject: [PATCH] Bump version --- CHANGELOG.md | 7 +++++++ app/build.gradle.kts | 4 ++-- app/src/androidMain/kotlin/app/AppModule.kt | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d2613d3..15d6434e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.8.0] - 2024-10-24 + +- Show place comments +- Hide ATMs by default +- Show places offering delivery +- Migrate to faster and more efficient v3 API + ## [0.7.3] - 2024-05-03 - Bundle the latest data snapshots diff --git a/app/build.gradle.kts b/app/build.gradle.kts index c7a1ac13..88573ebf 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -61,8 +61,8 @@ android { applicationId = "org.btcmap" minSdk = 27 targetSdk = 35 - versionCode = 50 - versionName = "0.7.3" + versionCode = 51 + versionName = "0.8.0" } compileOptions { diff --git a/app/src/androidMain/kotlin/app/AppModule.kt b/app/src/androidMain/kotlin/app/AppModule.kt index 46b220a3..1875429e 100644 --- a/app/src/androidMain/kotlin/app/AppModule.kt +++ b/app/src/androidMain/kotlin/app/AppModule.kt @@ -39,7 +39,7 @@ import element_comment.ElementCommentQueries import element_comment.ElementCommentRepo val appModule = module { - single { Database(get().getDatabasePath("btcmap-2024-10-18.db").absolutePath).conn } + single { Database(get().getDatabasePath("btcmap-2024-10-24.db").absolutePath).conn } single { ApiImpl() }.bind(Api::class)