From 4fe86401ff816631c8a1b8fd2de087888c368e2f Mon Sep 17 00:00:00 2001 From: Louis Date: Wed, 17 Jul 2024 11:14:45 +0200 Subject: [PATCH] Bump version to 0.8.1 --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dd7afcd..bdc3e37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udev" -version = "0.8.0" +version = "0.8.1" authors = ["David Cuddeback ", "Victoria Brekenfeld "] description = "libudev bindings for Rust" license = "MIT" diff --git a/README.md b/README.md index ceb128c..257ea86 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Add `udev` as a dependency in `Cargo.toml`: ```toml [dependencies] -udev = "^0.8.0" +udev = "^0.8.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.8.0" +udev = "^0.8.1" ``` Import the `udev` crate.