Skip to content

Commit a76927b

Browse files
committed
Bump version
1 parent 77d4c77 commit a76927b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7-
## [Unreleased]
7+
## [0.7.1] - 2024-03-17
88

99
- Fix issue with deleted places not being shown in a change log
1010
- Fix issue with date format

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
applicationId = "org.btcmap"
1414
minSdk = 27
1515
targetSdk = 34
16-
versionCode = 47
17-
versionName = "0.7.0"
16+
versionCode = 48
17+
versionName = "0.7.1"
1818

1919
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2020
}

app/src/main/kotlin/db/Database.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import java.time.LocalDateTime
99
val elementsUpdatedAt = MutableStateFlow(LocalDateTime.now())
1010

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

1515
fun inMemoryDatabase(): SQLiteOpenHelper {

0 commit comments

Comments
 (0)