Skip to content

Releases: gentoo90/winreg-rs

0.5.0

12 Jun 21:44
Compare
Choose a tag to compare
  • 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

12 Jun 21:44
Compare
Choose a tag to compare
  • Make transactions and serialization optional features
  • Update dependencies + minor fixes (#12)

0.3.5

12 Jun 21:44
Compare
Choose a tag to compare
  • Implement FromRegValue for OsString and ToRegValue for OsStr (#8)
  • Minor fixes

0.3.4

12 Jun 21:44
Compare
Choose a tag to compare
  • Add copy_tree method to RegKey
  • Now checked with rust-clippy
    • no more unwraps
    • replaced to_string with to_owned
  • Fix: reading strings longer than 2048 characters (#6)

0.3.3

12 Jun 21:44
Compare
Choose a tag to compare
  • Fix: now able to read values longer than 2048 bytes (#3)

0.3.2

12 Jun 21:44
Compare
Choose a tag to compare
  • Fix: FromRegValue trait now requires Sized (fixes build with rust 1.4)

0.3.1

12 Jun 21:44
Compare
Choose a tag to compare
  • Fix: bump winapi version to fix build

0.3.0

12 Jun 21:44
Compare
Choose a tag to compare
  • Add transactions support and make serialization transacted
  • Breaking change: use std::io::{Error,Result} instead of own RegError and RegResult