From 5966b56f24374cd9df7c46c247dcd6308ec02b8d Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 5 Oct 2024 12:02:02 +0100 Subject: [PATCH] Set versions and changelogs for 18.1.0 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- ffi/CHANGELOG.md | 7 +++++++ ffi/Cargo.toml | 2 +- 5 files changed, 26 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 297d912..effd205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ Version numbers are shared between libloadorder and libloadorder-ffi. This changelog does not include libloadorder-ffi changes. +## [18.1.0] - 2024-10-05 + +### Added + +- `ShatteredSpace.esm` is now recognised as a Starfield plugin with a hardcoded + load order index of `01`. + +### Changed + +- Starfield's official plugins were treated as being implicitly active, but now + `Starfield.esm`, `Constellation.esm`, `OldMars.esm`, `SFBGS003.esm`, + `SFBGS004.esm`, `SFBGS006.esm`, `SFBGS007.esm` and `SFBGS008.esm` have + hardcoded load order indexes, to match the behaviour of Starfield v1.14.70.0. +- Updated regex to 1.11.0. + ## [18.0.0] - 2024-08-24 Same as 17.1.0: the breaking changes intended for this release were accidentally diff --git a/Cargo.lock b/Cargo.lock index 81672ef..8300626 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -400,7 +400,7 @@ checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" [[package]] name = "libloadorder" -version = "18.0.0" +version = "18.1.0" dependencies = [ "criterion", "dirs", @@ -417,7 +417,7 @@ dependencies = [ [[package]] name = "libloadorder-ffi" -version = "18.0.0" +version = "18.1.0" dependencies = [ "libc", "libloadorder", diff --git a/Cargo.toml b/Cargo.toml index aaa06f0..52e46e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloadorder" -version = "18.0.0" +version = "18.1.0" 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 8c0db42..c200598 100644 --- a/ffi/CHANGELOG.md +++ b/ffi/CHANGELOG.md @@ -3,6 +3,13 @@ Version numbers are shared between libloadorder and libloadorder-ffi. This changelog only contains libloadorder-ffi changes. +## [18.1.0] - 2024-10-05 + +### Changed + +- Updated to libloadorder v18.1.0. +- Updated to libc v0.2.159. + ## [18.0.0] - 2024-08-23 ### Changed diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 2cabc26..78cd526 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloadorder-ffi" -version = "18.0.0" +version = "18.1.0" authors = ["Oliver Hamlet "] description = "A wrapper library providing a C FFI for libloadorder." documentation = "https://docs.rs/libloadorder-ffi"