diff --git a/CHANGES.txt b/CHANGES.txt index 532880072b..c09dc8e19e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,29 @@ +stratisd 3.0.4 +============== +Recommended Rust toolchain version: 1.58.1 +Lowest supported Rust toolchain version: 1.54.0 + +Recommended development platform for Python development: Fedora 35 +Lowest supported Python interpreter: 3.6.8 + +- New version 3.0.4: + https://github.com/stratis-storage/stratisd/pull/2929 + +- Send correct interface name for LockedPools property changed signal: + https://github.com/stratis-storage/stratisd/issues/2923 + https://github.com/stratis-storage/stratisd/pull/2924 + +- Fix introspection data for GetManagedObjects method: + https://github.com/stratis-storage/stratisd/pull/2926 + +- Require libcryptsetup-rs 0.5.0: + https://github.com/stratis-storage/stratisd/pull/2925 + +- Tidies and Maintenance: + https://github.com/stratis-storage/stratisd/pull/2928 + https://github.com/stratis-storage/stratisd/pull/2921 + + stratisd 3.0.3 ============== Recommended Rust toolchain version: 1.58.1 diff --git a/Cargo.lock b/Cargo.lock index ca8eaec77f..521d09bb85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -44,9 +44,9 @@ dependencies = [ [[package]] name = "autocfg" -version = "1.0.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "bindgen" @@ -759,9 +759,9 @@ dependencies = [ [[package]] name = "ntapi" -version = "0.3.6" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44" +checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f" dependencies = [ "winapi", ] @@ -1081,7 +1081,7 @@ checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" [[package]] name = "stratisd" -version = "3.0.3" +version = "3.0.4" dependencies = [ "async-trait", "bindgen 0.59.2", diff --git a/Cargo.toml b/Cargo.toml index d80014b5fb..c3367faa1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stratisd" -version = "3.0.3" +version = "3.0.4" authors = ["Stratis Developers "] edition = "2018" build = "build.rs"