diff --git a/CHANGELOG.md b/CHANGELOG.md index 163db47..8e896cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ Version numbers are shared between libloadorder and libloadorder-ffi. This changelog does not include libloadorder-ffi changes. +## [14.2.1] - 2023-08-22 + +## Changed + +- `GameSettings::active_plugins_file()` now returns a path ending in + `Plugins.txt` instead of `plugins.txt` for Oblivion and Nehrim, to + case-sensitively match the filenames created by those games. + ## [14.2.0] - 2023-08-20 ### Changed diff --git a/Cargo.toml b/Cargo.toml index a9ad582..e7ee2e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloadorder" -version = "14.2.0" +version = "14.2.1" authors = ["Oliver Hamlet "] description = "A cross-platform library for manipulating the load order and active status of plugins for the Elder Scrolls and Fallout games." documentation = "https://docs.rs/libloadorder" diff --git a/ffi/CHANGELOG.md b/ffi/CHANGELOG.md index 74b3732..6fd690b 100644 --- a/ffi/CHANGELOG.md +++ b/ffi/CHANGELOG.md @@ -3,6 +3,12 @@ Version numbers are shared between libloadorder and libloadorder-ffi. This changelog only contains libloadorder-ffi changes. +## [14.2.1] - 2023-08-22 + +### Changed + +- Updated to libloadorder v14.2.1. + ## [14.2.0] - 2023-08-20 ### Changed @@ -12,6 +18,7 @@ changelog only contains libloadorder-ffi changes. - `lot_create_handle()` will no longer fail on Linux if passed a null local data path and `LIBLO_GAME_TES3` as the game ID. Passing any other game ID with a null local data path will still fail. +- Updated to libloadorder v14.2.0. ## [14.1.0] - 2023-04-26 diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 7b91ce0..cf98eac 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloadorder-ffi" -version = "14.2.0" +version = "14.2.1" authors = ["Oliver Hamlet "] build = "build.rs" description = "A wrapper library providing a C FFI for libloadorder." @@ -17,7 +17,7 @@ exclude = [ ] [dependencies] -libloadorder = { version = "14.2.0", path = ".." } +libloadorder = { version = "14.2.1", path = ".." } libc = "0.2" [lib]