diff --git a/crates/backend/CHANGELOG.md b/crates/backend/CHANGELOG.md index df795d4c..16a2116c 100644 --- a/crates/backend/CHANGELOG.md +++ b/crates/backend/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. +## [0.4.0](https://github.com/rustic-rs/rustic_core/compare/rustic_backend-v0.3.0...rustic_backend-v0.4.0) - 2024-10-02 + +### Fixed + +- Add #[non_exhaustive] to pub structs which may be extended in future ([#293](https://github.com/rustic-rs/rustic_core/pull/293)) +- *(backend)* [**breaking**] Use correct merge stratgy for repository options ([#291](https://github.com/rustic-rs/rustic_core/pull/291)) + +### Other + +- *(deps)* update dependencies ([#292](https://github.com/rustic-rs/rustic_core/pull/292)) +- *(deps)* use conflate instead of merge crate ([#284](https://github.com/rustic-rs/rustic_core/pull/284)) + ## [0.3.0](https://github.com/rustic-rs/rustic_core/compare/rustic_backend-v0.2.1...rustic_backend-v0.3.0) - 2024-09-23 ### Added diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index b36e8453..e3f91770 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic_backend" -version = "0.3.0" +version = "0.4.0" 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 df5dd543..ea5042f6 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -2,6 +2,23 @@ All notable changes to this project will be documented in this file. +## [0.5.0](https://github.com/rustic-rs/rustic_core/compare/rustic_core-v0.4.0...rustic_core-v0.5.0) - 2024-10-02 + +### Added + +- Add read-data-subset to CheckOptions; allow to check given trees ([#262](https://github.com/rustic-rs/rustic_core/pull/262)) +- Add Repository method to update snapshot collections ([#260](https://github.com/rustic-rs/rustic_core/pull/260)) + +### Fixed + +- Add #[non_exhaustive] to pub structs which may be extended in future ([#293](https://github.com/rustic-rs/rustic_core/pull/293)) +- Don't query the default cache directory when a custom one is set ([#285](https://github.com/rustic-rs/rustic_core/pull/285)) + +### Other + +- *(deps)* update dependencies ([#292](https://github.com/rustic-rs/rustic_core/pull/292)) +- *(deps)* use conflate instead of merge crate ([#284](https://github.com/rustic-rs/rustic_core/pull/284)) + ## [0.4.0](https://github.com/rustic-rs/rustic_core/compare/rustic_core-v0.3.1...rustic_core-v0.4.0) - 2024-09-23 ### Added diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index ffbfe7cc..d5f8946b 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic_core" -version = "0.4.0" +version = "0.5.0" authors = ["the rustic-rs team"] categories = ["data-structures", "encoding", "filesystem"] documentation = "https://docs.rs/rustic_core" diff --git a/crates/testing/CHANGELOG.md b/crates/testing/CHANGELOG.md index 8f9c100a..8da51d21 100644 --- a/crates/testing/CHANGELOG.md +++ b/crates/testing/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2](https://github.com/rustic-rs/rustic_core/compare/rustic_testing-v0.2.1...rustic_testing-v0.2.2) - 2024-10-02 + +### Other + +- *(deps)* update dependencies ([#292](https://github.com/rustic-rs/rustic_core/pull/292)) + ## [0.2.1](https://github.com/rustic-rs/rustic_core/compare/rustic_testing-v0.2.0...rustic_testing-v0.2.1) - 2024-09-06 ### Fixed diff --git a/crates/testing/Cargo.toml b/crates/testing/Cargo.toml index ef6026d8..a853c784 100644 --- a/crates/testing/Cargo.toml +++ b/crates/testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic_testing" -version = "0.2.1" +version = "0.2.2" edition = "2021" license = "Apache-2.0 OR MIT" publish = true