diff --git a/Cargo.lock b/Cargo.lock index e76188f4..60ad3f0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4229,7 +4229,7 @@ dependencies = [ [[package]] name = "rustic_backend" -version = "0.6.1" +version = "0.6.2" dependencies = [ "aho-corasick", "anyhow", @@ -4272,7 +4272,7 @@ version = "0.2.4" [[package]] name = "rustic_core" -version = "0.11.0" +version = "0.12.0" dependencies = [ "aes256ctr_poly1305aes", "anyhow", diff --git a/crates/backend/CHANGELOG.md b/crates/backend/CHANGELOG.md index e0d5d6c9..75a3a2d0 100644 --- a/crates/backend/CHANGELOG.md +++ b/crates/backend/CHANGELOG.md @@ -2,6 +2,23 @@ All notable changes to this project will be documented in this file. +## [0.6.2](https://github.com/rustic-rs/rustic_core/compare/rustic_backend-v0.6.1...rustic_backend-v0.6.2) - 2026-06-01 + +### Added + +- make backup generic over a ReadSource; add openDAL ReadSource ([#518](https://github.com/rustic-rs/rustic_core/pull/518)) + +### Fixed + +- include repo root in warmup paths ([#509](https://github.com/rustic-rs/rustic_core/pull/509)) ([#510](https://github.com/rustic-rs/rustic_core/pull/510)) +- local BE - don't leave broken files when writing fails ([#499](https://github.com/rustic-rs/rustic_core/pull/499)) + +### Other + +- update dependencies ([#519](https://github.com/rustic-rs/rustic_core/pull/519)) +- enable pcloud backend feature ([#515](https://github.com/rustic-rs/rustic_core/pull/515)) +- update opendal, reqwest and others ([#507](https://github.com/rustic-rs/rustic_core/pull/507)) + ## [0.6.1](https://github.com/rustic-rs/rustic_core/compare/rustic_backend-v0.6.0...rustic_backend-v0.6.1) - 2026-03-04 ### Fixed diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index 7c48242d..f290a199 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic_backend" -version = "0.6.1" +version = "0.6.2" 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 f8b93680..a788d464 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -2,6 +2,29 @@ All notable changes to this project will be documented in this file. +## [0.12.0](https://github.com/rustic-rs/rustic_core/compare/rustic_core-v0.11.0...rustic_core-v0.12.0) - 2026-06-01 + +### Added + +- make backup generic over a ReadSource; add openDAL ReadSource ([#518](https://github.com/rustic-rs/rustic_core/pull/518)) +- [**breaking**] scope destination scan to snapshot-relevant paths for restore ([#493](https://github.com/rustic-rs/rustic_core/pull/493)) + +### Fixed + +- Build for 32-bit Android ([#517](https://github.com/rustic-rs/rustic_core/pull/517)) +- read index entries in `dump` before processing ([#513](https://github.com/rustic-rs/rustic_core/pull/513)) +- re-export jiff ([#512](https://github.com/rustic-rs/rustic_core/pull/512)) +- typo in comments ([#511](https://github.com/rustic-rs/rustic_core/pull/511)) +- local BE - don't leave broken files when writing fails ([#499](https://github.com/rustic-rs/rustic_core/pull/499)) +- fix clipp lints ([#500](https://github.com/rustic-rs/rustic_core/pull/500)) + +### Other + +- update dependencies ([#519](https://github.com/rustic-rs/rustic_core/pull/519)) +- Use Smallvec ([#514](https://github.com/rustic-rs/rustic_core/pull/514)) +- parallelize blob fetch in dump command ([#501](https://github.com/rustic-rs/rustic_core/pull/501)) +- update opendal, reqwest and others ([#507](https://github.com/rustic-rs/rustic_core/pull/507)) + ## [0.11.0](https://github.com/rustic-rs/rustic_core/compare/rustic_core-v0.10.1...rustic_core-v0.11.0) - 2026-04-05 ### Added diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 582effa5..d43e011e 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic_core" -version = "0.11.0" +version = "0.12.0" authors = ["the rustic-rs team"] categories = ["data-structures", "encoding", "filesystem"] documentation = "https://docs.rs/rustic_core"