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.55.0
4
+ * Breaking change: Migrate MSRV 1.60
5
+ * Breaking change: Upgrade ` windows-sys ` to version 0.59
6
+
3
7
## 0.54.0
4
8
* Breaking change: Migrate to the 2021 edition of Rust (MSRV 1.56)
5
9
* Breaking change: Upgrade ` windows-sys ` to version 0.52
Original file line number Diff line number Diff line change 2
2
name = " winreg"
3
3
edition = " 2021"
4
4
rust-version = " 1.60"
5
- version = " 0.54 .0"
5
+ version = " 0.55 .0"
6
6
authors = [
" Igor Shaula <[email protected] >" ]
7
7
license = " MIT"
8
8
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.54 "
39
+ winreg = " 0.55 "
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.54 " , features = [" transactions" ] }
141
+ winreg = { version = " 0.55 " , 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.54 " , features = [" serialization-serde" ] }
182
+ winreg = { version = " 0.55 " , 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.54 "
16
+ //!winreg = "0.55 "
17
17
//!```
18
18
//!
19
19
//!```no_run
You can’t perform that action at this time.
0 commit comments