diff --git a/CHANGELOG.md b/CHANGELOG.md index 3518020eb..6f3f6dd65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,67 @@ All notable changes to this project will be documented in this file. +## [0.9.0](https://github.com/rustic-rs/rustic/compare/v0.8.1...v0.9.0) - 2024-09-29 + +### Bug Fixes + +- [**breaking**] use multiple options only as array in config profile + ([#1240](https://github.com/rustic-rs/rustic/pull/1240)) +- Allow snapshots to be modified and marked to forget + ([#1253](https://github.com/rustic-rs/rustic/pull/1253)) +- make ls and find show the year of mtime date + ([#1249](https://github.com/rustic-rs/rustic/pull/1249)) +- ls: Remove printing trailing space + ([#1247](https://github.com/rustic-rs/rustic/pull/1247)) +- webdav/forget: correctly use application config + ([#1241](https://github.com/rustic-rs/rustic/pull/1241)) + +### Features + +- [**breaking**] copy: Use config profile as target + ([#1131](https://github.com/rustic-rs/rustic/pull/1131)) +- backup: Add option `stdin-command` + ([rustic_core](https://github.com/rustic-rs/rustic_core/releases/tag/rustic_core-v0.3.0)) +- Add list indexpacks and list indexcontent commands + ([#1254](https://github.com/rustic-rs/rustic/pull/1254)) +- Add option `--only-identical` for `diff` to allow for bitrot check + ([#1250](https://github.com/rustic-rs/rustic/pull/1250)) +- ls: Add option --json ([#1251](https://github.com/rustic-rs/rustic/pull/1251)) +- backup: Add option `--long` + ([#1159](https://github.com/rustic-rs/rustic/pull/1159)) + +### Documentation + +- update installation instructions in readme to use `--locked` flag for install + from crates.io +- update RepositoryErrorKind rustdoc following rustic_core change + ([#1237](https://github.com/rustic-rs/rustic/pull/1237)) + +### Other + +- Remove self-update from default crate features + ([#1139](https://github.com/rustic-rs/rustic/pull/1139)) +- Reduce memory usage of restore + ([#1069](https://github.com/rustic-rs/rustic/pull/1069)) +- *(deps)* update rust crate libc to v0.2.159 + ([#1257](https://github.com/rustic-rs/rustic/pull/1257)) +- *(deps)* lock file maintenance + ([#1269](https://github.com/rustic-rs/rustic/pull/1269)) +- *(deps)* update rust crate rstest to 0.23 + ([#1267](https://github.com/rustic-rs/rustic/pull/1267)) +- *(deps)* update rust crate tempfile to v3.13.0 + ([#1266](https://github.com/rustic-rs/rustic/pull/1266)) +- *(deps)* update marcoieni/release-plz-action digest to 8b0f89a + ([#1265](https://github.com/rustic-rs/rustic/pull/1265)) +- *(deps)* update embarkstudios/cargo-deny-action action to v2 + ([#1259](https://github.com/rustic-rs/rustic/pull/1259)) +- *(deps)* update rustsec/audit-check action to v2 + ([#1260](https://github.com/rustic-rs/rustic/pull/1260)) +- *(deps)* update softprops/action-gh-release action to v2 + ([#1258](https://github.com/rustic-rs/rustic/pull/1258)) +- *(deps)* update embarkstudios/cargo-deny-action digest to 3f4a782 + ([#1228](https://github.com/rustic-rs/rustic/pull/1228)) + ## [0.8.1] - 2024-09-08 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index ee180898a..0acf2582a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3664,7 +3664,7 @@ dependencies = [ [[package]] name = "rustic-rs" -version = "0.8.1" +version = "0.9.0" dependencies = [ "abscissa_core", "aho-corasick", diff --git a/Cargo.toml b/Cargo.toml index cbb53939e..4ecd42218 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic-rs" -version = "0.8.1" +version = "0.9.0" authors = ["the rustic-rs team"] categories = ["command-line-utilities"] documentation = "https://docs.rs/rustic-rs"