Version bump - 0.2.0

This commit is contained in:
Steve Soltys 2019-03-01 23:48:03 -05:00
parent 93f878f574
commit 571cecfa2f
3 changed files with 7 additions and 2 deletions

View file

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

View file

@ -6,6 +6,7 @@ A backup application for the [Android Open Source Project](https://source.androi
## Features
- Backup application data to a zip file.
- Restore application data from a zip file.
- Password-based encryption.
## Getting Started
- Check out [the wiki](https://github.com/stevesoltys/backup/wiki) for information on building the application with

View file

@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.stevesoltys.backup"
android:versionCode="3"
android:versionName="0.1.2">
android:versionCode="4"
android:versionName="0.2.0">
<uses-permission android:name="android.permission.BACKUP" />