From 80676f72b42e897933d4a6290ae15ef6899284ff Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Tue, 23 Oct 2018 21:04:13 +0100 Subject: [PATCH] Update versions and changelog for 1.1.0 --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- ffi/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..64d9770 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +## [1.1.0] - 2018-10-23 + +### Added + +- Support for `product_version()` condition functions, e.g. + `product_version("file.exe", "1.0.0", ==)`. It will read the product version + field of the executable at the given path, or error if the given path does not + point to an executable. + +## [1.0.0] - 2018-10-21 + +Initial release diff --git a/Cargo.toml b/Cargo.toml index b5a8004..b045b94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter" -version = "0.1.0" +version = "1.1.0" authors = ["Oliver Hamlet "] license = "MIT" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 261fab6..5bef3b8 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter-ffi" -version = "0.1.0" +version = "1.1.0" authors = ["Oliver Hamlet "] license = "MIT" build = "build.rs"