diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dd0eeb..33b54b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 4e3ff1b..96c4dab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libudev" -version = "0.2.0" +version = "0.3.0" authors = ["David Cuddeback "] description = "Rust wrapper for libudev" license = "MIT" diff --git a/README.md b/README.md index 8252724..cdcec29 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ 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 @@ -33,7 +33,7 @@ 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