From 90cbeff71ad7438447a44d09f4e91d7263d42b6c Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Tue, 23 Jul 2019 19:15:35 +0100 Subject: [PATCH] Update versions and changelog for v2.0.1 --- 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 ee1c311..366cfaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.0.1] - 2019-07-23 + +### Fixed + +- Regular expressions are now prefixed with `^` and suffixed with `$` to ensure + that only exact matches to the given expression are found. + ## [2.0.0] - 2019-06-30 ### Added diff --git a/Cargo.toml b/Cargo.toml index f8e8b0f..6b01f1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter" -version = "2.0.0" +version = "2.0.1" authors = ["Oliver Hamlet "] license = "MIT" edition = "2018" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 8588035..134a09a 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter-ffi" -version = "2.0.0" +version = "2.0.1" authors = ["Oliver Hamlet "] license = "MIT" build = "build.rs"