Skip to content

Commit

Permalink
v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbassi committed Sep 26, 2020
1 parent 40b9e98 commit 71d8111
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "psutil"
version = "3.1.0"
version = "3.2.0"
authors = ["Caleb Bassi <calebjbassi@gmail.com>", "Rob Day <rkd@rkd.me.uk>", "Sam Clements <sam@borntyping.co.uk>"]
description = "Process and system monitoring library"
repository = "https://github.com/rust-psutil/rust-psutil"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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
Expand Down

0 comments on commit 71d8111

Please sign in to comment.