Skip to content

Commit 4b0ba3e

Browse files
committed
Bump version to 0.14.0
1 parent 7634148 commit 4b0ba3e

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.14.0
4+
* Breaking change: increase MSRV to 1.34
5+
* Fix UB in `FromRegValue` for `u32` and `u64` ([#61](https://github.com/gentoo90/winreg-rs/issues/61))
6+
37
## 0.13.0
48

59
* Breaking change: `.commit()` and `.rollback()` now consume the transaction ([#62](https://github.com/gentoo90/winreg-rs/issues/62))

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "winreg"
33
edition = "2018"
4-
version = "0.13.0"
4+
version = "0.14.0"
55
authors = ["Igor Shaula <[email protected]>"]
66
license = "MIT"
77
description = "Rust bindings to MS Windows Registry API"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Current features:
3636
```toml
3737
# Cargo.toml
3838
[dependencies]
39-
winreg = "0.13"
39+
winreg = "0.14"
4040
```
4141

4242
```rust
@@ -138,7 +138,7 @@ fn main() -> io::Result<()> {
138138
```toml
139139
# Cargo.toml
140140
[dependencies]
141-
winreg = { version = "0.13", features = ["transactions"] }
141+
winreg = { version = "0.14", features = ["transactions"] }
142142
```
143143

144144
```rust
@@ -179,7 +179,7 @@ fn main() -> io::Result<()> {
179179
```toml
180180
# Cargo.toml
181181
[dependencies]
182-
winreg = { version = "0.13", features = ["serialization-serde"] }
182+
winreg = { version = "0.14", features = ["serialization-serde"] }
183183
serde = "1"
184184
serde_derive = "1"
185185
```

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//!```toml,ignore
1414
//!# Cargo.toml
1515
//![dependencies]
16-
//!winreg = "0.13"
16+
//!winreg = "0.14"
1717
//!```
1818
//!
1919
//!```no_run

0 commit comments

Comments
 (0)