From 9ef3aa23d5da45881045b5bd21aa832fb447fb86 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 13 Jun 2020 23:46:36 +0100 Subject: [PATCH] Update versions and changelog for v2.1.1 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- ffi/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 951d465..89826b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [2.1.1] - 2020-06-13 + +### Changed + +- Checksum calculations are now much faster for larger files. +- Directory paths are now handled more gracefully in `checksum()`, `version()` and `product_version()` conditions. +- Resolved some `rustc` deprecation warnings by replacing usage of `std::error::Error`'s `description()` function with `to_string()`. +- Updated cbindgen to v0.14. +- Updated pelite to v0.8.0. + ## [2.1.0] - 2019-10-05 ### Added diff --git a/Cargo.toml b/Cargo.toml index 3d692dc..38e354a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter" -version = "2.1.0" +version = "2.1.1" authors = ["Oliver Hamlet "] license = "MIT" edition = "2018" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 937d62f..d71da23 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter-ffi" -version = "2.1.0" +version = "2.1.1" authors = ["Oliver Hamlet "] license = "MIT" build = "build.rs"