From c914c8dee5d66b6393230af29dd7b20b85ceba1c Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 25 Nov 2023 13:42:26 +0000 Subject: [PATCH] Set versions and changelogs for 15.0.2 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- ffi/CHANGELOG.md | 6 ++++++ ffi/Cargo.toml | 4 ++-- 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28c5bd1..6d3d332 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ Version numbers are shared between libloadorder and libloadorder-ffi. This changelog does not include libloadorder-ffi changes. +## [15.0.2] - 2023-11-25 + +### Fixed + +- When parsing ini files, single and double quote characters are no longer + treated as special characters, and backslashes are no longer treated as + potentially the start of an escape sequence. + +### Changed + +- Case insensitivity is now consistently implemented using case folding instead + of a mix of case folding and lowercasing. +- Updated rust-ini to 0.20.0. +- Updated keyvalues-parser to 0.2.0. +- Updated windows to 0.52.0. + ## [15.0.1] - 2023-10-06 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 623bf67..beeed61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloadorder" -version = "15.0.1" +version = "15.0.2" 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 ca901b0..75cd94b 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. +## [15.0.2] - 2023-11-25 + +### Changed + +- Updated to libloadorder v15.0.2. + ## [15.0.1] - 2023-10-06 ### Changed diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 967d511..c4433a3 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloadorder-ffi" -version = "15.0.1" +version = "15.0.2" authors = ["Oliver Hamlet "] build = "build.rs" description = "A wrapper library providing a C FFI for libloadorder." @@ -17,7 +17,7 @@ exclude = [ ] [dependencies] -libloadorder = { version = "15.0.1", path = ".." } +libloadorder = { path = ".." } libc = "0.2" [dev-dependencies]