Skip to content

Commit e812ae1

Browse files
chore: release (#367)
## 🤖 New release * `rustic_backend`: 0.5.0 -> 0.5.1 (✓ API compatible changes) * `rustic_core`: 0.6.1 -> 0.7.0 (⚠️ API breaking changes) * `rustic_testing`: 0.3.0 -> 0.3.1 (✓ API compatible changes) ### ⚠️ `rustic_core` breaking changes ``` --- failure inherent_method_missing: pub method removed or renamed --- Description: A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/inherent_method_missing.ron Failed in: Vfs::into_webdav_fs, previously in file /tmp/.tmpgG4RJE/rustic_core/src/vfs.rs:470 Repository::is_async_compatible, previously in file /tmp/.tmpgG4RJE/rustic_core/src/repository.rs:716 --- failure struct_missing: pub struct removed or renamed --- Description: A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/struct_missing.ron Failed in: struct rustic_core::vfs::WebDavFS, previously in file /tmp/.tmpgG4RJE/rustic_core/src/vfs/webdavfs.rs:51 --- failure trait_method_missing: pub trait method removed or renamed --- Description: A trait method is no longer callable, and may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#major-any-change-to-trait-item-signatures impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_method_missing.ron Failed in: method is_async_compatible of trait ReadBackend, previously in file /tmp/.tmpgG4RJE/rustic_core/src/backend.rs:189 ``` <details><summary><i><b>Changelog</b></i></summary><p> ## `rustic_backend` <blockquote> ## [0.5.1](rustic_backend-v0.5.0...rustic_backend-v0.5.1) - 2024-11-24 ### Other - Revert "feat(async): add `async_compatible` methods to identify backend compatibility ([#355](#355))" </blockquote> ## `rustic_core` <blockquote> ## [0.7.0](rustic_core-v0.6.1...rustic_core-v0.7.0) - 2024-11-24 ### Other - remove webdav feature ([#366](#366)) - Revert "feat(async): add `async_compatible` methods to identify backend compatibility ([#355](#355))" </blockquote> ## `rustic_testing` <blockquote> ## [0.3.1](rustic_testing-v0.3.0...rustic_testing-v0.3.1) - 2024-11-24 ### Other - Revert "feat(async): add `async_compatible` methods to identify backend compatibility ([#355](#355))" </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). Co-authored-by: rustic-release-plz[bot] <182542030+rustic-release-plz[bot]@users.noreply.github.com>
1 parent 60a7e31 commit e812ae1

File tree

7 files changed

+25
-6
lines changed

7 files changed

+25
-6
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/backend/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.5.1](https://github.com/rustic-rs/rustic_core/compare/rustic_backend-v0.5.0...rustic_backend-v0.5.1) - 2024-11-24
6+
7+
### Other
8+
9+
- Revert "feat(async): add `async_compatible` methods to identify backend compatibility ([#355](https://github.com/rustic-rs/rustic_core/pull/355))"
10+
511
## [0.5.0](https://github.com/rustic-rs/rustic_core/compare/rustic_backend-v0.4.2...rustic_backend-v0.5.0) - 2024-11-18
612

713
### Added

crates/backend/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustic_backend"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["the rustic-rs team"]
55
categories = ["data-structures", "filesystem"]
66
documentation = "https://docs.rs/rustic_backend"

crates/core/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.7.0](https://github.com/rustic-rs/rustic_core/compare/rustic_core-v0.6.1...rustic_core-v0.7.0) - 2024-11-24
6+
7+
### Other
8+
9+
- remove webdav feature ([#366](https://github.com/rustic-rs/rustic_core/pull/366))
10+
- Revert "feat(async): add `async_compatible` methods to identify backend compatibility ([#355](https://github.com/rustic-rs/rustic_core/pull/355))"
11+
512
## [0.6.1](https://github.com/rustic-rs/rustic_core/compare/rustic_core-v0.6.0...rustic_core-v0.6.1) - 2024-11-19
613

714
### Added

crates/core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustic_core"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["the rustic-rs team"]
55
categories = ["data-structures", "encoding", "filesystem"]
66
documentation = "https://docs.rs/rustic_core"

crates/testing/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.3.1](https://github.com/rustic-rs/rustic_core/compare/rustic_testing-v0.3.0...rustic_testing-v0.3.1) - 2024-11-24
10+
11+
### Other
12+
13+
- Revert "feat(async): add `async_compatible` methods to identify backend compatibility ([#355](https://github.com/rustic-rs/rustic_core/pull/355))"
14+
915
## [0.3.0](https://github.com/rustic-rs/rustic_core/compare/rustic_testing-v0.2.3...rustic_testing-v0.3.0) - 2024-11-18
1016

1117
### Added

crates/testing/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustic_testing"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
license = "Apache-2.0 OR MIT"
66
publish = true

0 commit comments

Comments
 (0)