Skip to content

Commit

Permalink
Merge pull request #195 from byllyfish/bump_version
Browse files Browse the repository at this point in the history
Bump version to 0.12.0.
  • Loading branch information
byllyfish authored Feb 3, 2024
2 parents c5aca94 + 9f976cb commit 379aa3a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.12.0] - 2024-02-02

- Fix typo in rustdoc comments for getfacl/setfacl. (Thanks @sylvestre)
- Support FreeBSD 14 in CI builds. (Thanks @asomers)
- Run CI tests on macos-13 and macos-12.
- Update `bitflags` and `uuid` dependency versions.
- Update build version dependency for `bindgen`.
- Fix clippy warnings.

## [0.11.0] - 2023-09-25

- Upgrade `bitflags` to 2.4.0 from 1.x. `bitflags` is used to implement the Perm, Flag and AclOption API's.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "exacl"
version = "0.11.0"
version = "0.12.0"
authors = ["Bill Fisher <[email protected]>"]
description = "Manipulate file system access control lists (ACL) on macOS, Linux, and FreeBSD"
repository = "https://github.com/byllyfish/exacl"
Expand Down
3 changes: 2 additions & 1 deletion src/bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
clippy::unreadable_literal,
deref_nullptr, // https://github.com/rust-lang/rust-bindgen/issues/1651
clippy::too_many_lines,
clippy::borrow_as_ptr
clippy::borrow_as_ptr,
clippy::struct_field_names
)]

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

0 comments on commit 379aa3a

Please sign in to comment.