Skip to content

Commit

Permalink
chore: bump version to 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Drakulix committed Jan 21, 2025
1 parent 7511349 commit 4b6de2b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "udev"
version = "0.9.1"
version = "0.9.2"
authors = ["David Cuddeback <[email protected]>", "Victoria Brekenfeld <[email protected]>"]
description = "libudev bindings for Rust"
license = "MIT"
Expand Down
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ Add `udev` as a dependency in `Cargo.toml`:

```toml
[dependencies]
udev = "^0.9.1"
udev = "^0.9.2"
```

If you plan to support operating systems other than Linux, you'll need to add `udev` as a
target-specific dependency:

```toml
[target.x86_64-unknown-linux-gnu.dependencies]
udev = "^0.9.1"
udev = "^0.9.2"
```

Import the `udev` crate.
Expand All @@ -55,6 +55,17 @@ fn main() {
}
```

### Thread-safety

The udev-api does not have any thread-safety guarantees, however many implementations are indeed thread-safe.
If you are certain the implementations you are targetting and supporting are, you can enable the `send`-feature
to have `udev-rs` types implement `Send`:

```toml
[dependencies]
udev = { version = "^0.9.2", features = ["send"] }
```

## Contributors
* [drakulix](https://github.com/drakulix)
* [dcuddeback](https://github.com/dcuddeback)
Expand All @@ -69,6 +80,7 @@ fn main() {
* [lj94093](https://github.com/lj94093)
* [patrickelectric](https://github.com/patrickelectric)
* [TomzBench](https://github.com/TomzBench)
* [endrift](https://github.com/endrift)

## License
Copyright © 2017 Victoria Brekenfeld
Expand Down

0 comments on commit 4b6de2b

Please sign in to comment.