Skip to content

Commit c437115

Browse files
committed
Bump version
1 parent cc264af commit c437115

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ 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.2]
88

9+
- Notify user of new places nearby
910
- Perform daily sync in background
1011
- Handle API rate limiting
1112

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 = 48
17-
versionName = "0.7.1"
16+
versionCode = 49
17+
versionName = "0.7.2"
1818
}
1919

2020
compileOptions {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import java.time.LocalDateTime
88

99
val elementsUpdatedAt = MutableStateFlow(LocalDateTime.now())
1010

11-
const val DB_FILE_NAME = "btcmap-2024-04-25.db"
11+
const val DB_FILE_NAME = "btcmap-2024-04-26.db"
1212
const val DB_VERSION = 1
1313

1414
class Database(context: Context) : SQLiteOpenHelper(

0 commit comments

Comments
 (0)