Skip to content

Commit

Permalink
Bump version to 0.15.0
Browse files Browse the repository at this point in the history
gentoo90 committed Jan 6, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent c0a9406 commit cb06180
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.15.0
* 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))
* Implement (de)serialization of `Option` ([#56](https://github.com/gentoo90/winreg-rs/issues/56))
* Add `RegKey` methods for creating/opening subkeys with custom options ([#65](https://github.com/gentoo90/winreg-rs/pull/65))

## 0.14.0
* Breaking change: increase MSRV to 1.34
* Fix UB in `FromRegValue` for `u32` and `u64` ([#61](https://github.com/gentoo90/winreg-rs/issues/61))
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.14.0"
version = "0.15.0"
authors = ["Igor Shaula <[email protected]>"]
license = "MIT"
description = "Rust bindings to MS Windows Registry API"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ Current features:
```toml
# Cargo.toml
[dependencies]
winreg = "0.14"
winreg = "0.15"
```

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

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

0 comments on commit cb06180

Please sign in to comment.