Skip to content

Commit

Permalink
Prepare v0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dcuddeback committed Jan 17, 2021
1 parent 200cb5c commit 54d4de4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## 0.3.0 (TBA)
## 0.3.0 (2020-01-17)

This release changes the resource management strategy. Tracking lifetimes of dependent resources
makes for a less-ergonomic API. That has been replaced with reference-counting. There are no known
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libudev"
version = "0.2.0"
version = "0.3.0"
authors = ["David Cuddeback <[email protected]>"]
description = "Rust wrapper for libudev"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ Add `libudev` as a dependency in `Cargo.toml`:

```toml
[dependencies]
libudev = "0.2"
libudev = "0.3"
```

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

```toml
[target.x86_64-unknown-linux-gnu.dependencies]
libudev = "0.2"
libudev = "0.3"
```

Import the `libudev` crate. The starting point for nearly all `libudev` functionality is to create a
Expand Down

0 comments on commit 54d4de4

Please sign in to comment.