From ad2b07bbdf942231979582b280f86b9bded5ed73 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Fri, 22 Sep 2023 20:44:39 +0200 Subject: [PATCH] v0.8.0 --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8d2cad2..082b769 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udev" -version = "0.7.0" +version = "0.8.0" authors = ["David Cuddeback ", "Victoria Brekenfeld "] description = "libudev bindings for Rust" license = "MIT" diff --git a/README.md b/README.md index 869305a..ceb128c 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Add `udev` as a dependency in `Cargo.toml`: ```toml [dependencies] -udev = "^0.7.0" +udev = "^0.8.0" ``` 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.7.0" +udev = "^0.8.0" ``` Import the `udev` crate.