From e2183b95a97e0bbf0f3e40d484d93063b05841d3 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Fri, 6 Sep 2019 19:20:52 +0100 Subject: [PATCH] Update version numbers and changelogs for v3.2.0 --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- ffi/CHANGELOG.md | 12 ++++++++++++ ffi/Cargo.toml | 4 ++-- 4 files changed, 27 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 391192b..ceecb02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ As of v1.0.4, version numbers are shared between esplugin and esplugin-ffi. +## [3.2.0] - 2019-09-06 + +### Added + +- `Plugin::overlap_size()` for counting how many of the plugin's records are + also present in the given plugins. + +### Fixed + +- `Plugin::overlaps_with()` could fail to detect an overlap between Morrowind + plugins. + ## [3.0.0] - 2019-07-21 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 455e1e7..bcbc67f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "esplugin" -version = "3.0.0" +version = "3.2.0" authors = ["Oliver Hamlet "] description = "A free software library for reading Elder Scrolls plugin (.esp/.esm/.esl) files." documentation = "https://docs.rs/esplugin" diff --git a/ffi/CHANGELOG.md b/ffi/CHANGELOG.md index ad6c08d..ca0d264 100644 --- a/ffi/CHANGELOG.md +++ b/ffi/CHANGELOG.md @@ -2,6 +2,18 @@ After v1.0.3, version numbers are shared between esplugin and esplugin-ffi. +## [3.2.0] - 2019-09-06 + +### Added + +- `esp_plugin_records_overlap_size()`, which wraps `Plugin::overlap_size()`, + for counting how many of the plugin's records are also present in the given + plugins. + +### Changed + +- Updated to esplugin v3.2.0. + ## [3.1.0] - 2019-08-30 ### Added diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 9276570..4ec7295 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "esplugin-ffi" -version = "3.1.0" +version = "3.2.0" authors = ["Oliver Hamlet "] build = "build.rs" description = "A wrapper library providing a C FFI for esplugin." @@ -16,7 +16,7 @@ exclude = [ ] [dependencies] -esplugin = { version = "3.0.0", path = ".." } +esplugin = { version = "3.2.0", path = ".." } libc = "0.2" [lib]