Skip to content

Commit 5efc7df

Browse files
committed
Release v1.0.1
1 parent 485617a commit 5efc7df

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
11
# Android-Room-Database-Backup Changelog
22

3+
## [v1.0.1] - 2024-04-21
4+
5+
### Changes
6+
7+
- Dependency/Gradle upgrades
8+
- Chagned to stable but marked single features as beta
9+
310
## [v1.0.0-beta14] - 2024-01-16
411

512
###
13+
614
- Migrated from Gradle to Kotlin DSL
715

8-
**If this version makes any technical problems please feel free to contact me. I made some changes in Gradle/Kotlin DSL and not sure if everything is working as excepted**
16+
**If this version makes any technical problems please feel free to contact me. I made some changes
17+
in Gradle/Kotlin DSL and not sure if everything is working as excepted**
918

1019
### Fixes
1120

1221
- Just dependency upgrades
1322

14-
1523
## [v1.0.0-beta13] - 2023-08-15
1624

1725
### Changes

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ Simple tool to backup and restore your room database in Android
4141
## Getting started
4242

4343
Android-Room-Database-Backup library is pushed
44-
to [Maven Central](https://central.sonatype.com/artifact/de.raphaelebner/roomdatabasebackup/1.0.0-beta14/versions)
44+
to [Maven Central](https://central.sonatype.com/artifact/de.raphaelebner/roomdatabasebackup/1.0.1/versions)
4545
.
4646
Add the dependency for `Android-Room-Database-Backup ` to your app-level `build.gradle` file.
4747

4848
```groovy
49-
implementation 'de.raphaelebner:roomdatabasebackup:1.0.0-beta14'
49+
implementation 'de.raphaelebner:roomdatabasebackup:1.0.1'
5050
```
5151

5252
**If the version makes any technical problems please feel free to contact me. I made some changes in
@@ -141,7 +141,9 @@ The following options are optional and the default options
141141
- `RoomBackup.BACKUP_FILE_LOCATION_INTERNAL`
142142
- Custom Dialog (beta)
143143
- You can choose to save or restore where ever you want. A CreateDocument() or OpenDocument() Activity will be launched where you can choose the location
144-
- If your backup is encrypted I reccomend you using a custom encrption password else you can't restore your backup \* `RoomBackup.BACKUP_FILE_LOCATION_CUSTOM_DIALOG`
144+
- If your backup is encrypted I reccomend you using a custom encrption password else you can't
145+
restore your backup
146+
- `RoomBackup.BACKUP_FILE_LOCATION_CUSTOM_DIALOG`
145147
- Custom File (beta)
146148

147149
- You can choose to save or restore to/from a custom File.

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ dependencies {
7171
implementation("androidx.security:security-crypto:1.1.0-alpha06")
7272

7373
//Google Guava
74-
implementation("com.google.guava:guava:31.0.1-jre")
74+
implementation("com.google.guava:guava:33.1.0-jre")
7575

7676
//Apache commons io
7777
//https://mvnrepository.com/artifact/commons-io/commons-io

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Project-wide Gradle settings.
22
GROUP_ID=de.raphaelebner
33
ARTIFACT_ID=roomdatabasebackup
4-
VERSION_NAME=1.0.0-beta14
4+
VERSION_NAME=1.0.1
55
VERSION_CODE=1
66

77
POM_DESCRIPTION=Simple tool to Backup and Restore your Room Database
@@ -24,4 +24,4 @@ android.enableJetifier=false
2424
kotlin.code.style=official
2525
kapt.incremental.apt=true
2626
android.nonTransitiveRClass=true
27-
android.nonFinalResIds=false
27+
android.nonFinalResIds=false

0 commit comments

Comments
 (0)