From 4b0ba3e24325129c8f34809970e5e79c74f4a53e Mon Sep 17 00:00:00 2001 From: gentoo90 Date: Sun, 19 Nov 2023 21:10:10 +0200 Subject: [PATCH] Bump version to 0.14.0 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- README.md | 6 +++--- src/lib.rs | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eaa1e22..3d2431f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.14.0 +* Breaking change: increase MSRV to 1.34 +* Fix UB in `FromRegValue` for `u32` and `u64` ([#61](https://github.com/gentoo90/winreg-rs/issues/61)) + ## 0.13.0 * Breaking change: `.commit()` and `.rollback()` now consume the transaction ([#62](https://github.com/gentoo90/winreg-rs/issues/62)) diff --git a/Cargo.toml b/Cargo.toml index 231a915..8cd172b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "winreg" edition = "2018" -version = "0.13.0" +version = "0.14.0" authors = ["Igor Shaula "] license = "MIT" description = "Rust bindings to MS Windows Registry API" diff --git a/README.md b/README.md index 40ca17d..ef912cf 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Current features: ```toml # Cargo.toml [dependencies] -winreg = "0.13" +winreg = "0.14" ``` ```rust @@ -138,7 +138,7 @@ fn main() -> io::Result<()> { ```toml # Cargo.toml [dependencies] -winreg = { version = "0.13", features = ["transactions"] } +winreg = { version = "0.14", features = ["transactions"] } ``` ```rust @@ -179,7 +179,7 @@ fn main() -> io::Result<()> { ```toml # Cargo.toml [dependencies] -winreg = { version = "0.13", features = ["serialization-serde"] } +winreg = { version = "0.14", features = ["serialization-serde"] } serde = "1" serde_derive = "1" ``` diff --git a/src/lib.rs b/src/lib.rs index 6e102e1..83f60f0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,7 +13,7 @@ //!```toml,ignore //!# Cargo.toml //![dependencies] -//!winreg = "0.13" +//!winreg = "0.14" //!``` //! //!```no_run