From bae9e8b6301d04704e2ad684edf40fb064031ad6 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Fri, 24 Jan 2025 18:51:31 +0000 Subject: [PATCH] Update versions and changelog for v5.0.0 --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- ffi/Cargo.toml | 4 ++-- 4 files changed, 27 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a721285..06355fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [5.0.0] - 2025-02-01 + +### Added + +- `GameType::OpenMW` and `LCI_GAME_OPENMW` as the game code to use for OpenMW. + Unlike other games: + + - `.omwgame`, `.omwaddon` and `.omwscripts` are valid plugin file extensions. + - Ghosted plugins are not supported. + - The `is_master()` condition function returns `false` for all OpenMW plugins. + - When resolving filenames, the additional data paths are checked in reverse + order. + +### Changed + +- The `Error` and `GameType` enums are now non-exhaustive. +- Updated libc to v0.2.169. +- Updated regex to v1.11.1. +- Updated unicase to v2.8.1. + ## [4.0.2] - 2024-10-08 ### Changed diff --git a/Cargo.lock b/Cargo.lock index be4c09e..65f8481 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "aho-corasick" @@ -322,7 +322,7 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" [[package]] name = "loot-condition-interpreter" -version = "4.0.2" +version = "5.0.0" dependencies = [ "crc32fast", "criterion", @@ -336,7 +336,7 @@ dependencies = [ [[package]] name = "loot-condition-interpreter-ffi" -version = "4.0.2" +version = "5.0.0" dependencies = [ "libc", "loot-condition-interpreter", diff --git a/Cargo.toml b/Cargo.toml index 028cbd1..d42794c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "loot-condition-interpreter" -version = "4.0.2" -authors = ["Oliver Hamlet "] +version = "5.0.0" +authors = ["Oliver Hamlet "] license = "MIT" edition = "2021" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 684be22..7eac3da 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "loot-condition-interpreter-ffi" -version = "4.0.2" -authors = ["Oliver Hamlet "] +version = "5.0.0" +authors = ["Oliver Hamlet "] license = "MIT" edition = "2021"