diff --git a/CHANGELOG.md b/CHANGELOG.md index 32a14390..d68cf5f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,28 @@ All notable changes to this project will be documented in this file. +## [0.9.5](https://github.com/rustic-rs/rustic/compare/v0.9.4...v0.9.5) - 2024-11-23 + +### Added + +- *(async)* use `is_async_compatible()` to determine backend incompatibility and error out ([#1355](https://github.com/rustic-rs/rustic/pull/1355)) +- *(commands)* Add `mount` command ([#973](https://github.com/rustic-rs/rustic/pull/973)) + +### Other + +- Revert "feat(async): use `is_async_compatible()` to determine backend incompatibility and error out ([#1355](https://github.com/rustic-rs/rustic/pull/1355))" +- move `webdavfs` from `rustic_core` to `rustic-rs` ([#1363](https://github.com/rustic-rs/rustic/pull/1363)) +- *(clippy)* comment out unused lints in lib.rs +- *(clippy)* apply fixes automatically +- use BTreeMap for env in global options ([#1360](https://github.com/rustic-rs/rustic/pull/1360)) +- add tiny framework for testing rustic's compat with latest restic ([#1303](https://github.com/rustic-rs/rustic/pull/1303)) +- use snapshot tests for default config, show-config and completions ([#1359](https://github.com/rustic-rs/rustic/pull/1359)) +- *(deps)* update dependencies rustic_core, rustic_backend, rustic_testing, and migrate to conflate 0.3 ([#1357](https://github.com/rustic-rs/rustic/pull/1357)) +- fix typos +- *(build)* add platform-dependent settings and remove ci flag for extra features +- clarify `--use-profile` command in config by using long form ([#1344](https://github.com/rustic-rs/rustic/pull/1344)) +- *(deps)* update core and testing crates ([#1340](https://github.com/rustic-rs/rustic/pull/1340)) + ## [0.9.4](https://github.com/rustic-rs/rustic/compare/v0.9.3...v0.9.4) - 2024-10-24 ### Added diff --git a/Cargo.lock b/Cargo.lock index 1bba168f..bc808330 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4153,7 +4153,7 @@ dependencies = [ [[package]] name = "rustic-rs" -version = "0.9.4" +version = "0.9.5" dependencies = [ "abscissa_core", "aho-corasick", diff --git a/Cargo.toml b/Cargo.toml index b7a2d515..88d73489 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustic-rs" -version = "0.9.4" +version = "0.9.5" authors = ["the rustic-rs team"] categories = ["command-line-utilities"] documentation = "https://docs.rs/rustic-rs"