Skip to content

Commit

Permalink
Release v1.0.0-beta12
Browse files Browse the repository at this point in the history
  • Loading branch information
rafi0101 committed Mar 11, 2023
1 parent 032e334 commit 1f6ac47
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 27 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Android-Room-Database-Backup Changelog

## [v1.0.0-beta12] - 2023-03-11

### Changes

- Dependency upgrades
- License changed to 2023

### Fixes

- Improved requested file permissions for SDK33 or later
devices ([#25](https://github.com/rafi0101/Android-Room-Database-Backup/pull/25))
- Only database files are allowed to
restore ([#26](https://github.com/rafi0101/Android-Room-Database-Backup/issues/26))
- Improved builtin restart app function

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

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

#### DEPRECATED:

~~Add the JitPack repository to your project-level `build.gradle` file.~~

```groovy
allprojects {
repositories {
// your other repositories ...
maven { url 'https://jitpack.io' }
}
}
```

~~Then, add the dependency for `Android-Room-Database-Backup ` to your app-level `build.gradle`
file.~~

```groovy
implementation 'com.github.rafi0101:Android-Room-Database-Backup:1.0.0-beta09'
```

### New:

From now on the Android-Room-Database-Backup library is pushed
to [Maven Central](https://search.maven.org/artifact/de.raphaelebner/roomdatabasebackup/).
Android-Room-Database-Backup library is pushed
to [Maven Central](https://central.sonatype.com/artifact/de.raphaelebner/roomdatabasebackup/1.0.0-beta12/versions)
.
Add the dependency for `Android-Room-Database-Backup ` to your app-level `build.gradle` file.

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

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-beta11'
versionName '1.0.0-beta12'

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

0 comments on commit 1f6ac47

Please sign in to comment.