diff --git a/CHANGELOG.md b/CHANGELOG.md index a721285..a73f1a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [5.0.0] - 2025-01-24 + +### Added + +- `GameType::OpenMW` and `LCI_GAME_OPENMW` as the game code to use for OpenMW. + +### 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 6b41ec0..f80b604 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" @@ -321,7 +321,7 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" [[package]] name = "loot-condition-interpreter" -version = "4.0.2" +version = "5.0.0" dependencies = [ "crc32fast", "criterion", @@ -335,7 +335,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 411a4e1..e5f8e0c 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" @@ -21,5 +21,12 @@ tempfile = "3.15.0" name = "eval" harness = false +[[bench]] +name = "parse" +harness = false + [workspace] members = ["ffi"] + +[profile.release] +debug=1 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"