Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bubelov committed Oct 24, 2024
1 parent a1bd434 commit ca749e3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion app/src/androidMain/kotlin/app/AppModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import element_comment.ElementCommentQueries
import element_comment.ElementCommentRepo

val appModule = module {
single { Database(get<Context>().getDatabasePath("btcmap-2024-10-18.db").absolutePath).conn }
single { Database(get<Context>().getDatabasePath("btcmap-2024-10-24.db").absolutePath).conn }

single { ApiImpl() }.bind(Api::class)

Expand Down

0 comments on commit ca749e3

Please sign in to comment.