From 85e92873bd885ccd4ebe2eef9714825716ed1f69 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 26 Feb 2022 18:59:44 +0000 Subject: [PATCH] Update versions and changelog for v2.3.0 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- ffi/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 378f134..3f6f531 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.3.0] - 2022-02-26 + +### Added + +- Support for a `readable(path)` condition function that returns true if + the given path is a readable file or directory and false otherwise. + ## [2.2.2] - 2022-02-04 ### Changed diff --git a/Cargo.toml b/Cargo.toml index a44140e..d499157 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter" -version = "2.2.2" +version = "2.3.0" authors = ["Oliver Hamlet "] license = "MIT" edition = "2018" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 1153f91..f738b1b 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter-ffi" -version = "2.2.2" +version = "2.3.0" authors = ["Oliver Hamlet "] license = "MIT" build = "build.rs"