Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bubelov committed Apr 26, 2024
1 parent cc264af commit c437115
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ 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.2]

- Notify user of new places nearby
- Perform daily sync in background
- Handle API rate limiting

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 = 48
versionName = "0.7.1"
versionCode = 49
versionName = "0.7.2"
}

compileOptions {
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 @@ -8,7 +8,7 @@ import java.time.LocalDateTime

val elementsUpdatedAt = MutableStateFlow(LocalDateTime.now())

const val DB_FILE_NAME = "btcmap-2024-04-25.db"
const val DB_FILE_NAME = "btcmap-2024-04-26.db"
const val DB_VERSION = 1

class Database(context: Context) : SQLiteOpenHelper(
Expand Down

0 comments on commit c437115

Please sign in to comment.