Skip to content

Commit cb06180

Browse files
committed
Bump version to 0.15.0
1 parent c0a9406 commit cb06180

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.15.0
4+
* Don't stop deserialization of `Any` due to `REG_NONE` (pullrequest [#67](https://github.com/gentoo90/winreg-rs/pull/67), fixes [#66](https://github.com/gentoo90/winreg-rs/issues/66))
5+
* Implement (de)serialization of `Option` ([#56](https://github.com/gentoo90/winreg-rs/issues/56))
6+
* Add `RegKey` methods for creating/opening subkeys with custom options ([#65](https://github.com/gentoo90/winreg-rs/pull/65))
7+
38
## 0.14.0
49
* Breaking change: increase MSRV to 1.34
510
* Fix UB in `FromRegValue` for `u32` and `u64` ([#61](https://github.com/gentoo90/winreg-rs/issues/61))

Cargo.toml

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

README.md

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

4242
```rust
@@ -138,7 +138,7 @@ fn main() -> io::Result<()> {
138138
```toml
139139
# Cargo.toml
140140
[dependencies]
141-
winreg = { version = "0.14", features = ["transactions"] }
141+
winreg = { version = "0.15", 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.14", features = ["serialization-serde"] }
182+
winreg = { version = "0.15", features = ["serialization-serde"] }
183183
serde = "1"
184184
serde_derive = "1"
185185
```

src/lib.rs

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

0 commit comments

Comments
 (0)