Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bubelov committed Mar 17, 2024
1 parent 77d4c77 commit a76927b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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/).

## [Unreleased]
## [0.7.1] - 2024-03-17

- Fix issue with deleted places not being shown in a change log
- Fix issue with date format
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId = "org.btcmap"
minSdk = 27
targetSdk = 34
versionCode = 47
versionName = "0.7.0"
versionCode = 48
versionName = "0.7.1"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/kotlin/db/Database.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import java.time.LocalDateTime
val elementsUpdatedAt = MutableStateFlow(LocalDateTime.now())

fun persistentDatabase(context: Context): SQLiteOpenHelper {
return Database(context, "btcmap-2024-02-18.db")
return Database(context, "btcmap-2024-03-17.db")
}

fun inMemoryDatabase(): SQLiteOpenHelper {
Expand Down

0 comments on commit a76927b

Please sign in to comment.