Skip to content

Commit

Permalink
Bump version to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gentoo90 committed Nov 19, 2023
1 parent 5312581 commit 9aea2ad
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.13.0

* Breaking change: `.commit()` and `.rollback()` now consume the transaction ([#62](https://github.com/gentoo90/winreg-rs/issues/62))
* Add `RegKey::rename_subkey()` method ([#58](https://github.com/gentoo90/winreg-rs/issues/58))
* 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))
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "winreg"
edition = "2018"
version = "0.12.0"
version = "0.13.0"
authors = ["Igor Shaula <gentoo90@gmail.com>"]
license = "MIT"
description = "Rust bindings to MS Windows Registry API"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -36,7 +36,7 @@ Current features:
```toml
# Cargo.toml
[dependencies]
winreg = "0.12"
winreg = "0.13"
```

```rust
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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"
```
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//!```toml,ignore
//!# Cargo.toml
//![dependencies]
//!winreg = "0.12"
//!winreg = "0.13"
//!```
//!
//!```no_run
Expand Down

0 comments on commit 9aea2ad

Please sign in to comment.