Releases: gentoo90/winreg-rs
Releases · gentoo90/winreg-rs
0.5.0
- Breaking change:
open_subkey
now opens a key with readonly permissions.
Use create_subkey
or open_subkey_with_flags
to open with read-write permissions.
- Breaking change: features
transactions
and serialization-serde
are now disabled by default.
- Breaking change: serialization now uses
serde
instead of rustc-serialize
.
winapi
updated to 0.3
.
- Documentation fixes (#14)
0.4.0
- Make transactions and serialization optional features
- Update dependencies + minor fixes (#12)
0.3.5
- Implement
FromRegValue
for OsString
and ToRegValue
for OsStr
(#8)
- Minor fixes
0.3.4
- Add
copy_tree
method to RegKey
- Now checked with rust-clippy
- no more
unwrap
s
- replaced
to_string
with to_owned
- Fix: reading strings longer than 2048 characters (#6)
0.3.3
- Fix: now able to read values longer than 2048 bytes (#3)
0.3.2
- Fix:
FromRegValue
trait now requires Sized
(fixes build with rust 1.4)
0.3.1
- Fix: bump
winapi
version to fix build
0.3.0
- Add transactions support and make serialization transacted
- Breaking change: use
std::io::{Error,Result}
instead of own RegError
and RegResult