diff --git a/CHANGELOG.md b/CHANGELOG.md index bd94c34..55546ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Changelog -## [1.2.1] - 2018-01-20 +## [1.2.2] - 2019-01-26 + +### Fixed + +- `file()`, `active()`, `many()` and `many_active()` + did not parse the closing `)`, causing any remaining input to be skipped. + +## Changed + +- Parsing expressions will now fail if it does not consume all the given input. + +## [1.2.1] - 2019-01-20 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index f4fe194..281351c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter" -version = "1.2.1" +version = "1.2.2" authors = ["Oliver Hamlet "] license = "MIT" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 62069c4..6f964ed 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter-ffi" -version = "1.2.1" +version = "1.2.2" authors = ["Oliver Hamlet "] license = "MIT" build = "build.rs"