Skip to content

Commit

Permalink
Set versions and changelogs for 15.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Nov 25, 2023
1 parent 499aa89 commit c914c8d
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libloadorder"
version = "15.0.1"
version = "15.0.2"
authors = ["Oliver Hamlet <[email protected]>"]
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"
Expand Down
6 changes: 6 additions & 0 deletions ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libloadorder-ffi"
version = "15.0.1"
version = "15.0.2"
authors = ["Oliver Hamlet <[email protected]>"]
build = "build.rs"
description = "A wrapper library providing a C FFI for libloadorder."
Expand All @@ -17,7 +17,7 @@ exclude = [
]

[dependencies]
libloadorder = { version = "15.0.1", path = ".." }
libloadorder = { path = ".." }
libc = "0.2"

[dev-dependencies]
Expand Down

0 comments on commit c914c8d

Please sign in to comment.