prepare v0.3.2

This commit is contained in:
Alexander Weiss 2022-10-07 13:27:20 +02:00
parent 20ee73d06c
commit f809ac055f
3 changed files with 22 additions and 2 deletions

2
Cargo.lock generated
View File

@ -1557,7 +1557,7 @@ dependencies = [
[[package]]
name = "rustic-rs"
version = "0.3.1-dev"
version = "0.3.2"
dependencies = [
"aes256ctr_poly1305aes",
"ambassador",

View File

@ -1,6 +1,6 @@
[package]
name = "rustic-rs"
version = "0.3.1-dev"
version = "0.3.2"
description = """
fast, encrypted, deduplicated backups powered by pure Rust
"""

20
changelog/0.3.2.txt Normal file
View File

@ -0,0 +1,20 @@
Changes in version 0.3.2:
Breaking changes:
- Logging is completely reworked. New option --log-level replaces --verbose and --quiet
Bugs fixed:
- Fixed broken error handling in REST/rclone backend some error kinds.
- Don't prompt for password in init command if it is given.
New features:
- New option --log-file allows logging to a file
- New command completions to generate shell completions
- check: Added --read-data option
- check: Improved error handling and error messages
- rest/rclone backend: Abort immediately at permanent errors.
- restore: better debug output to see what restore exactly will do
- rclone backend no longer needs a temp dir. This meas rustic now doesn't need a temp dir at all.
- Nicer display of snapshot groups
- Added blackbox test using bats