From bc56ca8fffab8d9246137a95674e18e1886f1b85 Mon Sep 17 00:00:00 2001 From: Dennis Schwerdel Date: Fri, 14 Apr 2017 09:47:58 +0200 Subject: [PATCH] Version 0.2.0 --- CHANGELOG.md | 42 ++++++++++++++++++------------------- Cargo.lock | 2 +- Cargo.toml | 2 +- deb/zvault/debian/changelog | 26 +++++++++++++++++++++++ 4 files changed, 49 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29cba1c..4c26937 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,27 +4,27 @@ This project follows [semantic versioning](http://semver.org). ### UNRELEASED -- [added] Added CHANGELOG -- [added] Locking local repository to avoid index corruption -- [added] Storing user/group names in backups -- [added] Ability to repair bundles, backups, index, bundle map and bundle cache -- [added] Manpages for all subcommands -- [added] Folders of backups can be listed, removed and mounted -- [added] Supporting extended attributes in tar files -- [modified] No longer trying to upload by rename -- [modified] No longer failing restore if setting file attributes fails -- [modified] Backup files must end with `.backup` (**conversion needed**) -- [modified] Bundle files must end with `.bundle` -- [modified] Ingnoring corrupt bundles instead of failing -- [fixed] Creating empty bundle cache on init to avoid warnings -- [fixed] Calling sodiumoxide::init for faster algorithms and thread safety (not needed) -- [fixed] Fixed a deadlock in the bundle upload code -- [fixed] Also setting repository dirty on crash -- [fixed] Ignoring missing backups folder -- [fixed] Fixed problems with uploads from relative repository paths -- [fixed] Fixed finished messages -- [fixed] Fixed inode retrieval for single-file backups -- [fixed] Fixed tar import +* [added] Added CHANGELOG +* [added] Locking local repository to avoid index corruption +* [added] Storing user/group names in backups +* [added] Ability to repair bundles, backups, index, bundle map and bundle cache +* [added] Manpages for all subcommands +* [added] Folders of backups can be listed, removed and mounted +* [added] Supporting extended attributes in tar files +* [modified] No longer trying to upload by rename +* [modified] No longer failing restore if setting file attributes fails +* [modified] Backup files must end with `.backup` (**conversion needed**) +* [modified] Bundle files must end with `.bundle` +* [modified] Ingnoring corrupt bundles instead of failing +* [fixed] Creating empty bundle cache on init to avoid warnings +* [fixed] Calling sodiumoxide::init for faster algorithms and thread safety (not needed) +* [fixed] Fixed a deadlock in the bundle upload code +* [fixed] Also setting repository dirty on crash +* [fixed] Ignoring missing backups folder +* [fixed] Fixed problems with uploads from relative repository paths +* [fixed] Fixed finished messages +* [fixed] Fixed inode retrieval for single-file backups +* [fixed] Fixed tar import ### v0.1.0 (2017-04-11) diff --git a/Cargo.lock b/Cargo.lock index 6316596..97c88bc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "zvault" -version = "0.1.0" +version = "0.2.0" dependencies = [ "ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 259b128..9a9e7da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zvault" -version = "0.1.0" +version = "0.2.0" authors = ["Dennis Schwerdel "] description = "Deduplicating backup tool" diff --git a/deb/zvault/debian/changelog b/deb/zvault/debian/changelog index 53e0e42..1acf3d1 100644 --- a/deb/zvault/debian/changelog +++ b/deb/zvault/debian/changelog @@ -1,3 +1,29 @@ +zvault (0.2.0) stable; urgency=medium + + * [added] Added CHANGELOG + * [added] Locking local repository to avoid index corruption + * [added] Storing user/group names in backups + * [added] Ability to repair bundles, backups, index, bundle map and bundle cache + * [added] Manpages for all subcommands + * [added] Folders of backups can be listed, removed and mounted + * [added] Supporting extended attributes in tar files + * [modified] No longer trying to upload by rename + * [modified] No longer failing restore if setting file attributes fails + * [modified] Backup files must end with `.backup` (**conversion needed**) + * [modified] Bundle files must end with `.bundle` + * [modified] Ingnoring corrupt bundles instead of failing + * [fixed] Creating empty bundle cache on init to avoid warnings + * [fixed] Calling sodiumoxide::init for faster algorithms and thread safety (not needed) + * [fixed] Fixed a deadlock in the bundle upload code + * [fixed] Also setting repository dirty on crash + * [fixed] Ignoring missing backups folder + * [fixed] Fixed problems with uploads from relative repository paths + * [fixed] Fixed finished messages + * [fixed] Fixed inode retrieval for single-file backups + * [fixed] Fixed tar import + + -- Dennis Schwerdel Fri, 14 Apr 2017 09:45:20 +0200 + zvault (0.1.0) stable; urgency=medium * Initial release