From bfadbc2bb014d8f83d1a99f417593a6c74833f93 Mon Sep 17 00:00:00 2001 From: gentoo90 Date: Sun, 19 Nov 2023 19:02:29 +0200 Subject: [PATCH] Bump version to 0.13.0 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- README.md | 8 ++++---- src/lib.rs | 2 +- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d16681d..c6d9d33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.13.0 + +* Add `RegKey::rename_subkey()` method ([#58](https://github.com/gentoo90/winreg-rs/issues/58)) +* Breaking change: `.commit()` and `.rollback()` now consume the transaction ([#62](https://github.com/gentoo90/winreg-rs/issues/62)) +* Make serialization modules public ([#59](https://github.com/gentoo90/winreg-rs/issues/59)) + ## 0.12.0 * Breaking change: fix `std::fmt::Display` implementation for `RegValue` ([#52](https://github.com/gentoo90/winreg-rs/issues/52)) diff --git a/Cargo.toml b/Cargo.toml index 969959d..231a915 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "winreg" edition = "2018" -version = "0.12.0" +version = "0.13.0" authors = ["Igor Shaula "] license = "MIT" description = "Rust bindings to MS Windows Registry API" diff --git a/README.md b/README.md index 59f47d4..40ca17d 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Rust bindings to MS Windows Registry API. Work in progress. Current features: * Basic registry operations: - * open/create/delete keys + * open/create/delete/rename keys * load application hive from a file * read and write values * seamless conversion between `REG_*` types and rust primitives @@ -36,7 +36,7 @@ Current features: ```toml # Cargo.toml [dependencies] -winreg = "0.12" +winreg = "0.13" ``` ```rust @@ -138,7 +138,7 @@ fn main() -> io::Result<()> { ```toml # Cargo.toml [dependencies] -winreg = { version = "0.12", features = ["transactions"] } +winreg = { version = "0.13", features = ["transactions"] } ``` ```rust @@ -179,7 +179,7 @@ fn main() -> io::Result<()> { ```toml # Cargo.toml [dependencies] -winreg = { version = "0.12", features = ["serialization-serde"] } +winreg = { version = "0.13", features = ["serialization-serde"] } serde = "1" serde_derive = "1" ``` diff --git a/src/lib.rs b/src/lib.rs index 0384682..6e102e1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,7 +13,7 @@ //!```toml,ignore //!# Cargo.toml //![dependencies] -//!winreg = "0.12" +//!winreg = "0.13" //!``` //! //!```no_run