diff --git a/CHANGELOG.md b/CHANGELOG.md index 27e2158..bd94c34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.2.1] - 2018-01-20 + +### Fixed + +- Parsing error when reading the version fields of an executable that did not + have any US English version info. Reading executables' version fields now uses + the first version info structure instead of attempting to read the US English + version info structure. + ## [1.2.0] - 2018-12-22 ### Added diff --git a/Cargo.toml b/Cargo.toml index 2af4789..f4fe194 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter" -version = "1.2.0" +version = "1.2.1" authors = ["Oliver Hamlet "] license = "MIT" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 0069410..62069c4 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter-ffi" -version = "1.2.0" +version = "1.2.1" authors = ["Oliver Hamlet "] license = "MIT" build = "build.rs"