Skip to content

Commit 0b6b618

Browse files
committed
Release v1.0.0-beta11
1 parent 5eae0d3 commit 0b6b618

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
# Android-Room-Database-Backup Changelog
22

3+
## [v1.0.0-beta11] - 2022-10-30
4+
5+
### Fixes
6+
7+
- Just dependency upgrades
8+
39
## [v1.0.0-beta10] - 2022-01-06
410

511
### Breaking Changes
612

7-
- onCompleteListener provides now an [exitCode](https://github.com/rafi0101/Android-Room-Database-Backup#exit-codes)
13+
- onCompleteListener provides now
14+
an [exitCode](https://github.com/rafi0101/Android-Room-Database-Backup#exit-codes)
815

916
### Fixes
1017

11-
- Crash when database restoring with wrong password: ([#13](https://github.com/rafi0101/Android-Room-Database-Backup/issues/13))
18+
- Crash when database restoring with wrong
19+
password: ([#13](https://github.com/rafi0101/Android-Room-Database-Backup/issues/13))
1220

1321
### Upgrading Notes
1422

@@ -31,11 +39,15 @@
3139
## [v1.0.0-beta08] - 2021-11-14
3240

3341
### Features
42+
3443
- **Custom Backup Location:** ([#9](https://github.com/rafi0101/Android-Room-Database-Backup/issues/9))
3544

3645
You can choose between internal, external application storage and (new) custom storage. If you choose custom storage a CreateDocument() (for creating a backup file) or OpenDocument() (for choosing a backup file to restore) Activity will be opened
3746

3847
### Upgrading Notes
39-
- ```.context(this)``` changed to ```val backup = RoomBackup(this)``` and must be declared outside of an onClickListener
4048

41-
- ```.useExternalStorage(false)``` is replaced with ```.backupLocation(backupLocation: Int)```. See [README.md](readme.md)
49+
- `.context(this)` changed to `val backup = RoomBackup(this)` and must be declared outside of an
50+
onClickListener
51+
52+
- `.useExternalStorage(false)` is replaced with `.backupLocation(backupLocation: Int)`.
53+
See [README.md](readme.md)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
![Build](https://github.com/rafi0101/Android-Room-Database-Backup/workflows/Android%20CI/badge.svg)
55
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/de.raphaelebner/roomdatabasebackup/badge.svg)](https://maven-badges.herokuapp.com/maven-central/de.raphaelebner/roomdatabasebackup)
6-
[![Room Version](https://img.shields.io/badge/room_version-2.4.0-orange)](https://developer.android.com/jetpack/androidx/releases/room#version_240_3)
6+
[![Room Version](https://img.shields.io/badge/room_version-2.4.3-orange)](https://developer.android.com/jetpack/androidx/releases/room#version_243_3)
77
[![API](https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=21)
88
![Language](https://img.shields.io/badge/language-Kotlin-orange.svg)
99
[![PRWelcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/rafi0101/Android-Room-Database-Backup/pulls)
@@ -69,7 +69,7 @@ to [Maven Central](https://search.maven.org/artifact/de.raphaelebner/roomdatabas
6969
Add the dependency for `Android-Room-Database-Backup ` to your app-level `build.gradle` file.
7070

7171
```groovy
72-
implementation 'de.raphaelebner:roomdatabasebackup:1.0.0-beta10'
72+
implementation 'de.raphaelebner:roomdatabasebackup:1.0.0-beta11'
7373
```
7474

7575
Usage

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ android {
1919
minSdkVersion 21
2020
targetSdkVersion 33
2121
versionCode 1
22-
versionName '1.0.0-beta10'
22+
versionName '1.0.0-beta11'
2323

2424
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2525
consumerProguardFiles "consumer-rules.pro"

0 commit comments

Comments
 (0)