diff --git a/CHANGELOG.md b/CHANGELOG.md index 11a9958..0b8cd68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.55.0 +* Breaking change: Migrate MSRV 1.60 +* Breaking change: Upgrade `windows-sys` to version 0.59 + ## 0.54.0 * Breaking change: Migrate to the 2021 edition of Rust (MSRV 1.56) * Breaking change: Upgrade `windows-sys` to version 0.52 diff --git a/Cargo.toml b/Cargo.toml index 1db5d93..6a5fd6f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "winreg" edition = "2021" rust-version = "1.60" -version = "0.54.0" +version = "0.55.0" authors = ["Igor Shaula "] license = "MIT" description = "Rust bindings to MS Windows Registry API" diff --git a/README.md b/README.md index d69b846..7034f54 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Current features: ```toml # Cargo.toml [dependencies] -winreg = "0.54" +winreg = "0.55" ``` ```rust @@ -138,7 +138,7 @@ fn main() -> io::Result<()> { ```toml # Cargo.toml [dependencies] -winreg = { version = "0.54", features = ["transactions"] } +winreg = { version = "0.55", features = ["transactions"] } ``` ```rust @@ -179,7 +179,7 @@ fn main() -> io::Result<()> { ```toml # Cargo.toml [dependencies] -winreg = { version = "0.54", features = ["serialization-serde"] } +winreg = { version = "0.55", features = ["serialization-serde"] } serde = "1" serde_derive = "1" ``` diff --git a/src/lib.rs b/src/lib.rs index 34049c7..e5d0242 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,7 +13,7 @@ //!```toml,ignore //!# Cargo.toml //![dependencies] -//!winreg = "0.54" +//!winreg = "0.55" //!``` //! //!```no_run