Skip to content

Commit

Permalink
Prepare for 0.5.0 release (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
intgr committed Mar 17, 2020
1 parent a386da7 commit 0bc93c0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "posix-acl"
version = "0.4.0"
version = "0.5.0"
edition = "2018"

# Metadata
authors = ["Marti Raudsepp <marti@juffo.org>"]
description = "Simple library to interact with Posix filesystem ACLs"
description = "Simple library to interact with POSIX filesystem ACLs"
readme = "README.md"
license = "MIT"
homepage = "https://github.com/intgr/posix-acl"
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,15 @@ fn main() {

Release history
---------------
##### 0.5.0 (2020-03-17)

* **API change:** Now using `AsRef<Path>` in methods that accept paths (`read_acl` etc.) (#33)

This means `.as_ref()` is no longer needed or allowed when passing paths to these methods.
* Added methods `into_raw`, `from_raw` for converting to/from raw `acl_t` pointer (#21).
Thanks to @aidanhs!
* Documentation tweaks & code cleanups.

##### 0.4.0 (2020-03-10)
This release is fully API-compatible with 0.3.0.
* Documentation expanded substantially (#27)
Expand Down

0 comments on commit 0bc93c0

Please sign in to comment.