From e8d8cb718a0658e12a4babf8c35547c4fa816d44 Mon Sep 17 00:00:00 2001 From: "rustic-release-plz[bot]" <182542030+rustic-release-plz[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 22:58:29 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 8 ++++---- crates/backend/CHANGELOG.md | 15 +++++++++++++++ crates/backend/Cargo.toml | 2 +- crates/config/CHANGELOG.md | 6 ++++++ crates/config/Cargo.toml | 2 +- crates/core/CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ crates/core/Cargo.toml | 2 +- crates/testing/CHANGELOG.md | 6 ++++++ crates/testing/Cargo.toml | 2 +- 9 files changed, 68 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2a2f4ccce..12ccc8a35 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3248,7 +3248,7 @@ dependencies = [ [[package]] name = "rustic_backend" -version = "0.5.4" +version = "0.6.0" dependencies = [ "aho-corasick", "anyhow", @@ -3289,11 +3289,11 @@ checksum = "fbcebf2228827bc4b61cb54dfd84cf43aacf06ca2dfe4c014b136a0e32b876e2" [[package]] name = "rustic_config" -version = "0.2.3" +version = "0.2.4" [[package]] name = "rustic_core" -version = "0.9.0" +version = "0.10.0" dependencies = [ "aes256ctr_poly1305aes", "anyhow", @@ -3363,7 +3363,7 @@ dependencies = [ [[package]] name = "rustic_testing" -version = "0.3.4" +version = "0.4.0" dependencies = [ "aho-corasick", "anyhow", diff --git a/crates/backend/CHANGELOG.md b/crates/backend/CHANGELOG.md index 3f88d32c5..36a3c8ff8 100644 --- a/crates/backend/CHANGELOG.md +++ b/crates/backend/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [0.6.0](https://github.com/rustic-rs/rustic_core/compare/rustic_backend-v0.5.4...rustic_backend-v0.6.0) - 2026-02-03 + +### Added + +- [**breaking**] Add support for batch warmup ([#438](https://github.com/rustic-rs/rustic_core/pull/438)) +- *(backend/opendal)* include scheme in location() and bump opendal to 0.55.0 ([#446](https://github.com/rustic-rs/rustic_core/pull/446)) + +### Fixed + +- Use jiff everywhere ([#467](https://github.com/rustic-rs/rustic_core/pull/467)) + +### Other + +- update MSRV to 1.88.0 ([#471](https://github.com/rustic-rs/rustic_core/pull/471)) + ## [0.5.4](https://github.com/rustic-rs/rustic_core/compare/rustic_backend-v0.5.3...rustic_backend-v0.5.4) - 2025-11-08 ### Added diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index 008d078d0..2c18670e2 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic_backend" -version = "0.5.4" +version = "0.6.0" authors = ["the rustic-rs team"] categories = ["data-structures", "filesystem"] documentation = "https://docs.rs/rustic_backend" diff --git a/crates/config/CHANGELOG.md b/crates/config/CHANGELOG.md index 8a71b902c..16935fd43 100644 --- a/crates/config/CHANGELOG.md +++ b/crates/config/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.2.4](https://github.com/rustic-rs/rustic_core/compare/rustic_config-v0.2.3...rustic_config-v0.2.4) - 2026-02-03 + +### Other + +- update MSRV to 1.88.0 ([#471](https://github.com/rustic-rs/rustic_core/pull/471)) + ## [0.2.3](https://github.com/rustic-rs/rustic_core/compare/rustic_config-v0.2.2...rustic_config-v0.2.3) - 2025-09-12 ### Other diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 8ce92846a..3871dd86c 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic_config" -version = "0.2.3" +version = "0.2.4" authors = ["the rustic-rs team"] categories = ["config"] documentation = "https://docs.rs/rustic_config" diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index bcab848f1..77d61a115 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -2,6 +2,39 @@ All notable changes to this project will be documented in this file. +## [0.10.0](https://github.com/rustic-rs/rustic_core/compare/rustic_core-v0.9.0...rustic_core-v0.10.0) - 2026-02-03 + +### Added + +- [**breaking**] Add support for batch warmup ([#438](https://github.com/rustic-rs/rustic_core/pull/438)) +- [**breaking**] Add masterkey as credential option ([#468](https://github.com/rustic-rs/rustic_core/pull/468)) +- improve copy algorithm ([#464](https://github.com/rustic-rs/rustic_core/pull/464)) +- [**breaking**] More rewrite features ([#465](https://github.com/rustic-rs/rustic_core/pull/465)) +- [**breaking**] Add rewrite command ([#462](https://github.com/rustic-rs/rustic_core/pull/462)) +- [**breaking**] extend LocalSourceSaveOptions ([#461](https://github.com/rustic-rs/rustic_core/pull/461)) +- [**breaking**] improve restore algorithm ([#453](https://github.com/rustic-rs/rustic_core/pull/453)) +- [**breaking**] change ignore-devid to with-devid ([#460](https://github.com/rustic-rs/rustic_core/pull/460)) +- Use Timestamp in index ([#458](https://github.com/rustic-rs/rustic_core/pull/458)) +- Optimize prune rewrite ([#448](https://github.com/rustic-rs/rustic_core/pull/448)) +- [**breaking**] Add support for multiple parents ([#427](https://github.com/rustic-rs/rustic_core/pull/427)) + +### Fixed + +- Use jiff everywhere ([#467](https://github.com/rustic-rs/rustic_core/pull/467)) +- fix rewrite file count ([#466](https://github.com/rustic-rs/rustic_core/pull/466)) +- Return error if too few snapshots for latest~N ([#459](https://github.com/rustic-rs/rustic_core/pull/459)) +- Use early-delete-index only if instant-delete is selected ([#457](https://github.com/rustic-rs/rustic_core/pull/457)) +- fix clap runtime errors for parent options ([#456](https://github.com/rustic-rs/rustic_core/pull/456)) +- Use parents instead of parent; allow latest ([#455](https://github.com/rustic-rs/rustic_core/pull/455)) +- improve error handling for missing UID/GID name ([#454](https://github.com/rustic-rs/rustic_core/pull/454)) +- fix clippy lints ([#449](https://github.com/rustic-rs/rustic_core/pull/449)) + +### Other + +- update MSRV to 1.88.0 ([#471](https://github.com/rustic-rs/rustic_core/pull/471)) +- FreeBSD build ([#440](https://github.com/rustic-rs/rustic_core/pull/440)) +- refactor! use jiff instead of chrono ([#452](https://github.com/rustic-rs/rustic_core/pull/452)) + ## [0.9.0](https://github.com/rustic-rs/rustic_core/compare/rustic_core-v0.8.0...rustic_core-v0.9.0) - 2025-11-08 ### Added diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 662008256..9371a1bc1 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic_core" -version = "0.9.0" +version = "0.10.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 4d063896e..ed07eeb07 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.4.0](https://github.com/rustic-rs/rustic_core/compare/rustic_testing-v0.3.4...rustic_testing-v0.4.0) - 2026-02-03 + +### Added + +- [**breaking**] Add support for batch warmup ([#438](https://github.com/rustic-rs/rustic_core/pull/438)) + ## [0.3.4](https://github.com/rustic-rs/rustic_core/compare/rustic_testing-v0.3.3...rustic_testing-v0.3.4) - 2025-11-08 ### Other diff --git a/crates/testing/Cargo.toml b/crates/testing/Cargo.toml index 73c06237a..8ba4c9a4a 100644 --- a/crates/testing/Cargo.toml +++ b/crates/testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic_testing" -version = "0.3.4" +version = "0.4.0" edition = "2024" license = "Apache-2.0 OR MIT" publish = true