Skip to content

Commit

Permalink
Release v1.0.0-beta11
Browse files Browse the repository at this point in the history
  • Loading branch information
rafi0101 committed Oct 30, 2022
1 parent 5eae0d3 commit 0b6b618
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
# Android-Room-Database-Backup Changelog

## [v1.0.0-beta11] - 2022-10-30

### Fixes

- Just dependency upgrades

## [v1.0.0-beta10] - 2022-01-06

### Breaking Changes

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

### Fixes

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

### Upgrading Notes

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

### Features

- **Custom Backup Location:** ([#9](https://github.com/rafi0101/Android-Room-Database-Backup/issues/9))

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

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

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

- `.useExternalStorage(false)` is replaced with `.backupLocation(backupLocation: Int)`.
See [README.md](readme.md)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

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

```groovy
implementation 'de.raphaelebner:roomdatabasebackup:1.0.0-beta10'
implementation 'de.raphaelebner:roomdatabasebackup:1.0.0-beta11'
```

Usage
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {
minSdkVersion 21
targetSdkVersion 33
versionCode 1
versionName '1.0.0-beta10'
versionName '1.0.0-beta11'

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down

0 comments on commit 0b6b618

Please sign in to comment.