diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d06bd1..5e6f89f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ As of v1.0.4, version numbers are shared between esplugin and esplugin-ffi. +## [6.0.1] - 2024-07-22 + +### Fixed + +- `Plugin::masters()` and `Plugin::description()` now truncate the strings that + they return up to (and not including) their first null byte, to match the + behaviour of supported games and their official modding tools. + ## [6.0.0] - 2024-06-27 ### Added diff --git a/Cargo.lock b/Cargo.lock index fc3d34d..58f1c22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -214,7 +214,7 @@ dependencies = [ [[package]] name = "esplugin" -version = "6.0.0" +version = "6.0.1" dependencies = [ "criterion", "encoding_rs", @@ -227,7 +227,7 @@ dependencies = [ [[package]] name = "esplugin-ffi" -version = "6.0.0" +version = "6.0.1" dependencies = [ "esplugin", "libc", diff --git a/Cargo.toml b/Cargo.toml index f617f07..59849dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "esplugin" -version = "6.0.0" +version = "6.0.1" 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 ddb759e..ad9cfcf 100644 --- a/ffi/CHANGELOG.md +++ b/ffi/CHANGELOG.md @@ -2,6 +2,12 @@ After v1.0.3, version numbers are shared between esplugin and esplugin-ffi. +## [6.0.1] - 2024-07-22 + +### Changed + +- Updated to esplugin v6.0.1. + ## [6.0.0] - 2024-06-27 ### Added diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index d9d269b..3c18783 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "esplugin-ffi" -version = "6.0.0" +version = "6.0.1" authors = ["Oliver Hamlet "] description = "A wrapper library providing a C FFI for esplugin." documentation = "https://docs.rs/esplugin-ffi" @@ -16,7 +16,7 @@ exclude = [ ] [dependencies] -esplugin = { version = "6.0.0", path = ".." } +esplugin = { version = "6.0.1", path = ".." } libc = "0.2" [lib]