From f37053b51865cb4e67a80706a01ca8583544c21b Mon Sep 17 00:00:00 2001 From: Bill Fisher Date: Wed, 8 Jun 2022 22:22:30 -0700 Subject: [PATCH] Bump version number. --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60e0c73..d52ed0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.9.0] - 2022-06-08 + +- Fix compilation on various Linux architectures where `c_char` is signed (Issue #107). +- Disable `layout_tests` option in `bindgen`. +- Update version dependencies for `bindgen` and `uuid`. +- Improve code coverage CI script. +- Fix clippy warnings. + ## [0.8.0] - 2022-02-03 - `serde` is now an optional dependency. Use `features = ["serde"]` to enable (Issue #95). diff --git a/Cargo.toml b/Cargo.toml index 31af6c3..7ca0dc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "exacl" -version = "0.8.0" +version = "0.9.0" authors = ["Bill Fisher "] description = "Manipulate file system access control lists (ACL) on macOS, Linux, and FreeBSD" repository = "https://github.com/byllyfish/exacl"