diff --git a/CHANGELOG.md b/CHANGELOG.md index 312ebdd46..9e42d5319 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v3.2.0] - 2020-09-26 + ### Added - Make all public types serde Serializable and Deserializable @@ -132,7 +134,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Remove `getpid()`, `getppid()`, `Process.from_pidfile()`, `write_pidfile()`, and `read_pidfile()` -[Unreleased]: https://github.com/rust-psutil/rust-psutil/compare/v3.1.0...HEAD +[Unreleased]: https://github.com/rust-psutil/rust-psutil/compare/v3.2.0...HEAD +[v3.2.0]: https://github.com/rust-psutil/rust-psutil/compare/v3.1.0...v3.2.0 [v3.1.0]: https://github.com/rust-psutil/rust-psutil/compare/v3.0.1...v3.1.0 [v3.0.1]: https://github.com/rust-psutil/rust-psutil/compare/v3.0.0...v3.0.1 [v3.0.0]: https://github.com/rust-psutil/rust-psutil/compare/v2.0.0...v3.0.0 diff --git a/Cargo.toml b/Cargo.toml index 1379c97b3..0b2ba6371 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psutil" -version = "3.1.0" +version = "3.2.0" authors = ["Caleb Bassi ", "Rob Day ", "Sam Clements "] description = "Process and system monitoring library" repository = "https://github.com/rust-psutil/rust-psutil" diff --git a/README.md b/README.md index 0478a27fd..8f15d5dff 100644 --- a/README.md +++ b/README.md @@ -13,14 +13,14 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -psutil = "3.1.0" +psutil = "3.2.0" ``` Or to only use certain submodules: ```toml [dependencies] -psutil = { version = "3.1.0", default-features = false, features = ["cpu", "process"] } +psutil = { version = "3.2.0", default-features = false, features = ["cpu", "process"] } ``` ## Platform Support