diff --git a/Cargo.toml b/Cargo.toml index 3488d2c..263a68b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "posix-acl" -version = "1.1.0" +version = "1.2.0" edition = "2018" rust-version = "1.60.0" diff --git a/LICENSE b/LICENSE index 086c1f4..495c513 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2022 Marti Raudsepp & contributors +Copyright (c) 2020-2023 Marti Raudsepp & contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 91d3c8c..d9adebb 100644 --- a/README.md +++ b/README.md @@ -46,9 +46,16 @@ fn main() { Release history --------------- -##### UNRELEASED - -* `Qualifier` and `ACLEntry` now implement `Eq` (in addition to `PartialEq`) (#61) +##### 1.2.0 (2023-12-11) + +- **Added:** `Qualifier` and `ACLEntry` now implement `Copy` and `Clone` ([#69](https://github.com/intgr/posix-acl/pull/69), [#70](https://github.com/intgr/posix-acl/pull/70))
+ Contributed by **eax-ebx** +- **Added:** `Qualifier` and `ACLEntry` now implement `Eq` (in addition to `PartialEq`) ([#61](https://github.com/intgr/posix-acl/pull/61)) +- **Changed:** Many methods now have `#[must_use]` annotation ([#76](https://github.com/intgr/posix-acl/pull/76)) +- **Documentation:** Added separate errors/panics sections to many functions ([#71](https://github.com/intgr/posix-acl/pull/71)) +- **Documentation:** Added example CLI app that prints ACL ([#45](https://github.com/intgr/posix-acl/pull/45)) +- **Build:** Declare Minimum Supported Rust Version (MSRV) as 1.60 ([#72](https://github.com/intgr/posix-acl/pull/72), [#74](https://github.com/intgr/posix-acl/pull/74)) +- **Build:** Enabled and fixed all Clippy pedantic lints ([#75](https://github.com/intgr/posix-acl/pull/75), [#63](https://github.com/intgr/posix-acl/pull/63)) ##### 1.1.0 (2022-05-25)