Skip to content

Commit

Permalink
Bump version to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gentoo90 committed Sep 12, 2021
1 parent 843915e commit 76f84e9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "winreg"
version = "0.9.0"
version = "0.10.0"
authors = ["Igor Shaula <gentoo90@gmail.com>"]
license = "MIT"
description = "Rust bindings to MS Windows Registry API"
Expand Down
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Rust bindings to MS Windows Registry API. Work in progress.
Current features:
* Basic registry operations:
* open/create/delete keys
* load application hive from a file
* read and write values
* seamless conversion between `REG_*` types and rust primitives
* `String` and `OsString` <= `REG_SZ`, `REG_EXPAND_SZ` or `REG_MULTI_SZ`
Expand All @@ -35,7 +36,7 @@ Current features:
```toml
# Cargo.toml
[dependencies]
winreg = "0.9"
winreg = "0.10"
```

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

```rust
Expand Down Expand Up @@ -181,7 +182,7 @@ fn main() -> io::Result<()> {
```toml
# Cargo.toml
[dependencies]
winreg = { version = "0.9", features = ["serialization-serde"] }
winreg = { version = "0.10", features = ["serialization-serde"] }
serde = "1"
serde_derive = "1"
```
Expand Down Expand Up @@ -279,6 +280,13 @@ fn main() -> Result<(), Box<dyn Error>> {

## Changelog

### 0.10.0

* Add `RegKey::load_app_key()` and `RegKey::load_app_key_with_flags()` ([#30](https://github.com/gentoo90/winreg-rs/issues/30))
* Update dev dependency `rand` to `0.8`
* Add Github actions
* Fix some clippy warnings

### 0.9.0

* Breaking change: `OsStr` and `OsString` registry values are not `NULL`-terminated any more ([#34](https://github.com/gentoo90/winreg-rs/issues/34), [#42](https://github.com/gentoo90/winreg-rs/issues/42))
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.9.{build}
version: 0.10.{build}
pull_requests:
do_not_increment_build_number: true

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.9"
//!winreg = "0.10"
//!```
//!
//!```no_run
Expand Down

0 comments on commit 76f84e9

Please sign in to comment.