Skip to content

Commit 571cecf

Browse files
committed
Version bump - 0.2.0
1 parent 93f878f commit 571cecf

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.2.0] - 2019-03-01
2+
### Added
3+
- Support for encrypted backups with a 256-bit AES key generated from a password using PBKDF2.
4+
15
## [0.1.2] - 2019-02-11
26
### Fixed
37
- Downgrade SDK target version to 26 due to [#15](https://github.com/stevesoltys/backup/issues/15).

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ A backup application for the [Android Open Source Project](https://source.androi
66
## Features
77
- Backup application data to a zip file.
88
- Restore application data from a zip file.
9+
- Password-based encryption.
910

1011
## Getting Started
1112
- Check out [the wiki](https://github.com/stevesoltys/backup/wiki) for information on building the application with

app/src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.stevesoltys.backup"
5-
android:versionCode="3"
6-
android:versionName="0.1.2">
5+
android:versionCode="4"
6+
android:versionName="0.2.0">
77

88
<uses-permission android:name="android.permission.BACKUP" />
99

0 commit comments

Comments
 (0)