diff --git a/CHANGELOG.md b/CHANGELOG.md index 4860cf2..27e2158 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.2.0] - 2018-12-22 + +### Added + +- Support for parsing version strings that match the regular expression + `\d+, \d+, \d+, \d+`. + +### Changed + +- An executable's product version is now read from the `ProductVersion` field in + the executable's `VS_VERSIONINFO` structure, not from the product version + fields in the `VS_FIXEDFILEINFO` structure. This is so that the version read + matches the version displayed by Windows' File Explorer. + ## [1.1.1] - 2018-11-14 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index e3c6fef..2af4789 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter" -version = "1.1.1" +version = "1.2.0" authors = ["Oliver Hamlet "] license = "MIT" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 2bc8ae2..0069410 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter-ffi" -version = "1.1.1" +version = "1.2.0" authors = ["Oliver Hamlet "] license = "MIT" build = "build.rs"