From 431e74654c27ec38a6f7d19c186bec42c2a938b8 Mon Sep 17 00:00:00 2001 From: Arc-blroth <45273859+Arc-blroth@users.noreply.github.com> Date: Wed, 26 Jun 2024 12:30:17 -0700 Subject: [PATCH] prepare for v1.2 release --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 917a44c..cd42054 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## Version 1.2.0 + +- Clarify documentation to explicitly state that the data is returned in bytes ([#5](https://github.com/Arc-blroth/memory-stats/pull/5)) +- Fix building on unsupported OSes ([#8](https://github.com/Arc-blroth/memory-stats/pull/8)) +- Support FreeBSD ([#10](https://github.com/Arc-blroth/memory-stats/pull/10)) +- Use the `windows-sys` crate over the old `winapi` crate on Windows ([#11](https://github.com/Arc-blroth/memory-stats/pull/11)) + ## Version 1.1.0 - Added `always_use_statm` feature for use cases where speed is needed over accuracy. diff --git a/Cargo.toml b/Cargo.toml index b6e528b..a527dda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "memory-stats" authors = ["Arc-blroth <45273859+Arc-blroth@users.noreply.github.com>"] license = "MIT OR Apache-2.0" -version = "1.1.0" +version = "1.2.0" edition = "2021" description = "A cross-platform memory profiler for Rust." repository = "https://github.com/Arc-blroth/memory-stats" diff --git a/README.md b/README.md index 828794a..13b3ec2 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add `memory-stats` as a dependency to your `Cargo.toml`: ```toml [dependencies] -memory-stats = "1.0.0" +memory-stats = "1.2.0" ``` ### Optional Features