diff --git a/Cargo.lock b/Cargo.lock index 07e929c9..3b9f1cde 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3313,7 +3313,7 @@ dependencies = [ [[package]] name = "rustic_backend" -version = "0.5.2" +version = "0.5.3" dependencies = [ "aho-corasick", "anyhow", @@ -3358,7 +3358,7 @@ version = "0.2.2" [[package]] name = "rustic_core" -version = "0.7.3" +version = "0.8.0" dependencies = [ "aes256ctr_poly1305aes", "anyhow", diff --git a/crates/backend/CHANGELOG.md b/crates/backend/CHANGELOG.md index 8fbe749e..f51ea936 100644 --- a/crates/backend/CHANGELOG.md +++ b/crates/backend/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. +## [0.5.3](https://github.com/rustic-rs/rustic_core/compare/rustic_backend-v0.5.2...rustic_backend-v0.5.3) - 2024-12-24 + +### Fixed + +- *(deps)* lock file maintenance rust dependencies (#389) + +### Other + +- Update opendal to 0.51.0 (#391) + ## [0.5.2](https://github.com/rustic-rs/rustic_core/compare/rustic_backend-v0.5.1...rustic_backend-v0.5.2) - 2024-11-27 ### Fixed diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index 4cc45068..e6259629 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic_backend" -version = "0.5.2" +version = "0.5.3" authors = ["the rustic-rs team"] categories = ["data-structures", "filesystem"] documentation = "https://docs.rs/rustic_backend" diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index a804179a..33d6bc0f 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. +## [0.8.0](https://github.com/rustic-rs/rustic_core/compare/rustic_core-v0.7.3...rustic_core-v0.8.0) - 2024-12-24 + +### Added + +- *(commands)* Add delete_unchanged option to forget (#386) +- *(commands)* [**breaking**] rename backup skip_identical_parent to skip_if_unchanged (#387) +- *(warmup)* [**breaking**] Add warmup wait command (#379) + +### Fixed + +- [**breaking**] Don't panic when reading empty files (#381) + ## [0.7.3](https://github.com/rustic-rs/rustic_core/compare/rustic_core-v0.7.2...rustic_core-v0.7.3) - 2024-12-06 ### Fixed diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 880708d8..7b5bec79 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic_core" -version = "0.7.3" +version = "0.8.0" authors = ["the rustic-rs team"] categories = ["data-structures", "encoding", "filesystem"] documentation = "https://docs.rs/rustic_core"