Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions crates/backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
23 changes: 23 additions & 0 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading