Skip to content

Commit 9243b23

Browse files
committed
Bump version to 0.55.0
1 parent f044074 commit 9243b23

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.55.0
4+
* Breaking change: Migrate MSRV 1.60
5+
* Breaking change: Upgrade `windows-sys` to version 0.59
6+
37
## 0.54.0
48
* Breaking change: Migrate to the 2021 edition of Rust (MSRV 1.56)
59
* Breaking change: Upgrade `windows-sys` to version 0.52

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "winreg"
33
edition = "2021"
44
rust-version = "1.60"
5-
version = "0.54.0"
5+
version = "0.55.0"
66
authors = ["Igor Shaula <[email protected]>"]
77
license = "MIT"
88
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.54"
39+
winreg = "0.55"
4040
```
4141

4242
```rust
@@ -138,7 +138,7 @@ fn main() -> io::Result<()> {
138138
```toml
139139
# Cargo.toml
140140
[dependencies]
141-
winreg = { version = "0.54", features = ["transactions"] }
141+
winreg = { version = "0.55", 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.54", features = ["serialization-serde"] }
182+
winreg = { version = "0.55", 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.54"
16+
//!winreg = "0.55"
1717
//!```
1818
//!
1919
//!```no_run

0 commit comments

Comments
 (0)