diff --git a/CHANGELOG.md b/CHANGELOG.md index 18a69e6..21ae0ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [3.1.0] - 2023-09-05 + +### Added + +- `GameType::Starfield` and `LCI_GAME_STARFIELD` as the game code to use for + Starfield. + +### Fixed + +- Only lowercase plugin file extensions were recognised as plugin file + extensions. + ## [3.0.0] - 2023-08-18 ### Removed diff --git a/Cargo.toml b/Cargo.toml index 7868197..566657e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter" -version = "3.0.0" +version = "3.1.0" authors = ["Oliver Hamlet "] license = "MIT" edition = "2018" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 938a7d5..ea98dd7 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter-ffi" -version = "3.0.0" +version = "3.1.0" authors = ["Oliver Hamlet "] license = "MIT" build = "build.rs"