Skip to content

Commit 1f6ac47

Browse files
committed
Release v1.0.0-beta12
1 parent 032e334 commit 1f6ac47

File tree

3 files changed

+21
-27
lines changed

3 files changed

+21
-27
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Android-Room-Database-Backup Changelog
22

3+
## [v1.0.0-beta12] - 2023-03-11
4+
5+
### Changes
6+
7+
- Dependency upgrades
8+
- License changed to 2023
9+
10+
### Fixes
11+
12+
- Improved requested file permissions for SDK33 or later
13+
devices ([#25](https://github.com/rafi0101/Android-Room-Database-Backup/pull/25))
14+
- Only database files are allowed to
15+
restore ([#26](https://github.com/rafi0101/Android-Room-Database-Backup/issues/26))
16+
- Improved builtin restart app function
17+
318
## [v1.0.0-beta11] - 2022-10-30
419

520
### Fixes

README.md

Lines changed: 5 additions & 26 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.3-orange)](https://developer.android.com/jetpack/androidx/releases/room#version_243_3)
6+
[![Room Version](https://img.shields.io/badge/room_version-2.5.0-orange)](https://developer.android.com/jetpack/androidx/releases/room#2.5.0)
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)
@@ -42,34 +42,13 @@ Changelog
4242
Getting started
4343
-----------
4444

45-
#### DEPRECATED:
46-
47-
~~Add the JitPack repository to your project-level `build.gradle` file.~~
48-
49-
```groovy
50-
allprojects {
51-
repositories {
52-
// your other repositories ...
53-
maven { url 'https://jitpack.io' }
54-
}
55-
}
56-
```
57-
58-
~~Then, add the dependency for `Android-Room-Database-Backup ` to your app-level `build.gradle`
59-
file.~~
60-
61-
```groovy
62-
implementation 'com.github.rafi0101:Android-Room-Database-Backup:1.0.0-beta09'
63-
```
64-
65-
### New:
66-
67-
From now on the Android-Room-Database-Backup library is pushed
68-
to [Maven Central](https://search.maven.org/artifact/de.raphaelebner/roomdatabasebackup/).
45+
Android-Room-Database-Backup library is pushed
46+
to [Maven Central](https://central.sonatype.com/artifact/de.raphaelebner/roomdatabasebackup/1.0.0-beta12/versions)
47+
.
6948
Add the dependency for `Android-Room-Database-Backup ` to your app-level `build.gradle` file.
7049

7150
```groovy
72-
implementation 'de.raphaelebner:roomdatabasebackup:1.0.0-beta11'
51+
implementation 'de.raphaelebner:roomdatabasebackup:1.0.0-beta12'
7352
```
7453

7554
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-beta11'
22+
versionName '1.0.0-beta12'
2323

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

0 commit comments

Comments
 (0)