diff --git a/CHANGELOG.md b/CHANGELOG.md index a1255b0..06dd78d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,25 @@ # Android-Room-Database-Backup Changelog +## [v1.0.1] - 2024-04-21 + +### Changes + +- Dependency/Gradle upgrades +- Chagned to stable but marked single features as beta + ## [v1.0.0-beta14] - 2024-01-16 ### + - Migrated from Gradle to Kotlin DSL -**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** +**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** ### Fixes - Just dependency upgrades - ## [v1.0.0-beta13] - 2023-08-15 ### Changes diff --git a/README.md b/README.md index 97d3155..f8893b4 100644 --- a/README.md +++ b/README.md @@ -41,12 +41,12 @@ Simple tool to backup and restore your room database in Android ## Getting started Android-Room-Database-Backup library is pushed -to [Maven Central](https://central.sonatype.com/artifact/de.raphaelebner/roomdatabasebackup/1.0.0-beta14/versions) +to [Maven Central](https://central.sonatype.com/artifact/de.raphaelebner/roomdatabasebackup/1.0.1/versions) . Add the dependency for `Android-Room-Database-Backup ` to your app-level `build.gradle` file. ```groovy -implementation 'de.raphaelebner:roomdatabasebackup:1.0.0-beta14' +implementation 'de.raphaelebner:roomdatabasebackup:1.0.1' ``` **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 - `RoomBackup.BACKUP_FILE_LOCATION_INTERNAL` - Custom Dialog (beta) - 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 - - 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` + - 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` - Custom File (beta) - You can choose to save or restore to/from a custom File. diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 8661755..2658492 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -71,7 +71,7 @@ dependencies { implementation("androidx.security:security-crypto:1.1.0-alpha06") //Google Guava - implementation("com.google.guava:guava:31.0.1-jre") + implementation("com.google.guava:guava:33.1.0-jre") //Apache commons io //https://mvnrepository.com/artifact/commons-io/commons-io diff --git a/gradle.properties b/gradle.properties index 24259f2..6cd5780 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ # Project-wide Gradle settings. GROUP_ID=de.raphaelebner ARTIFACT_ID=roomdatabasebackup -VERSION_NAME=1.0.0-beta14 +VERSION_NAME=1.0.1 VERSION_CODE=1 POM_DESCRIPTION=Simple tool to Backup and Restore your Room Database @@ -24,4 +24,4 @@ android.enableJetifier=false kotlin.code.style=official kapt.incremental.apt=true android.nonTransitiveRClass=true -android.nonFinalResIds=false \ No newline at end of file +android.nonFinalResIds=false