File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
7
## 0.13.0
4
8
5
9
* Breaking change: ` .commit() ` and ` .rollback() ` now consume the transaction ([ #62 ] ( https://github.com/gentoo90/winreg-rs/issues/62 ) )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " winreg"
3
3
edition = " 2018"
4
- version = " 0.13 .0"
4
+ version = " 0.14 .0"
5
5
authors = [
" Igor Shaula <[email protected] >" ]
6
6
license = " MIT"
7
7
description = " Rust bindings to MS Windows Registry API"
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ Current features:
36
36
``` toml
37
37
# Cargo.toml
38
38
[dependencies ]
39
- winreg = " 0.13 "
39
+ winreg = " 0.14 "
40
40
```
41
41
42
42
``` rust
@@ -138,7 +138,7 @@ fn main() -> io::Result<()> {
138
138
``` toml
139
139
# Cargo.toml
140
140
[dependencies ]
141
- winreg = { version = " 0.13 " , features = [" transactions" ] }
141
+ winreg = { version = " 0.14 " , features = [" transactions" ] }
142
142
```
143
143
144
144
``` rust
@@ -179,7 +179,7 @@ fn main() -> io::Result<()> {
179
179
``` toml
180
180
# Cargo.toml
181
181
[dependencies ]
182
- winreg = { version = " 0.13 " , features = [" serialization-serde" ] }
182
+ winreg = { version = " 0.14 " , features = [" serialization-serde" ] }
183
183
serde = " 1"
184
184
serde_derive = " 1"
185
185
```
Original file line number Diff line number Diff line change 13
13
//!```toml,ignore
14
14
//!# Cargo.toml
15
15
//![dependencies]
16
- //!winreg = "0.13 "
16
+ //!winreg = "0.14 "
17
17
//!```
18
18
//!
19
19
//!```no_run
You can’t perform that action at this time.
0 commit comments