Skip to content

Commit

Permalink
Bump version to 0.50.0
Browse files Browse the repository at this point in the history
Versions `<0.50` are left for possible `winapi` branch fixes
  • Loading branch information
gentoo90 committed Apr 3, 2023
1 parent c6fa2bb commit 5fb3bc6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.50.0

* Breaking change: [`winapi-rs`](https://crates.io/crates/winapi) is not maintained any more, so migrate to Microsofts [`windows-sys`](https://crates.io/crates/windows-sys) as a backend ([#48](https://github.com/gentoo90/winreg-rs/pull/48), [#51](https://github.com/gentoo90/winreg-rs/pull/51))
* Breaking change: Increase minimum supported Rust version to `1.46` since `windows-sys` doesn't compile with older versions
* Replace deprecated methods from `chrono` ([#48](https://github.com/gentoo90/winreg-rs/pull/48))

## 0.11.0

* Migrate to the 2018 edition of Rust
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "winreg"
edition = "2018"
version = "0.11.0"
version = "0.50.0"
authors = ["Igor Shaula <gentoo90@gmail.com>"]
license = "MIT"
description = "Rust bindings to MS Windows Registry API"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Current features:
```toml
# Cargo.toml
[dependencies]
winreg = "0.11"
winreg = "0.50"
```

```rust
Expand Down Expand Up @@ -138,7 +138,7 @@ fn main() -> io::Result<()> {
```toml
# Cargo.toml
[dependencies]
winreg = { version = "0.11", features = ["transactions"] }
winreg = { version = "0.50", features = ["transactions"] }
```

```rust
Expand Down Expand Up @@ -179,7 +179,7 @@ fn main() -> io::Result<()> {
```toml
# Cargo.toml
[dependencies]
winreg = { version = "0.11", features = ["serialization-serde"] }
winreg = { version = "0.50", features = ["serialization-serde"] }
serde = "1"
serde_derive = "1"
```
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//!```toml,ignore
//!# Cargo.toml
//![dependencies]
//!winreg = "0.11"
//!winreg = "0.50"
//!```
//!
//!```no_run
Expand Down

0 comments on commit 5fb3bc6

Please sign in to comment.