diff --git a/Cargo.toml b/Cargo.toml index 6a4275d..d50de23 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udev" -version = "0.6.0" +version = "0.6.1" authors = ["David Cuddeback ", "Victor Brekenfeld "] description = "libudev bindings for Rust" license = "MIT" diff --git a/README.md b/README.md index 411280d..7888b2e 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Add `udev` as a dependency in `Cargo.toml`: ```toml [dependencies] -udev = "0.6" +udev = "^0.6.1" ``` If you plan to support operating systems other than Linux, you'll need to add `udev` as a @@ -36,7 +36,7 @@ target-specific dependency: ```toml [target.x86_64-unknown-linux-gnu.dependencies] -udev = "0.6" +udev = "^0.6.1" ``` Import the `udev` crate.