diff --git a/CHANGELOG.md b/CHANGELOG.md index feb371d7..6f3472b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/README.md b/README.md index dd44eef2..fca0dc89 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index eb03edab..215cf703 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -2,8 +2,8 @@ + android:versionCode="4" + android:versionName="0.2.0">