diff --git a/Cargo.lock b/Cargo.lock index 0d18d70..c87b37f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1538,7 +1538,7 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" [[package]] name = "ltk_fantome" -version = "0.6.0" +version = "0.6.1" dependencies = [ "camino", "eyre", @@ -1639,7 +1639,7 @@ dependencies = [ [[package]] name = "ltk_overlay" -version = "0.5.0" +version = "0.5.1" dependencies = [ "byteorder", "camino", diff --git a/crates/league-mod/Cargo.toml b/crates/league-mod/Cargo.toml index 9cd9a25..b7331da 100644 --- a/crates/league-mod/Cargo.toml +++ b/crates/league-mod/Cargo.toml @@ -27,7 +27,7 @@ slug = "0.1.6" ltk_modpkg = { version = "0.6.0", path = "../ltk_modpkg", features = [ "project", ] } -ltk_fantome = { version = "0.6.0", path = "../ltk_fantome" } +ltk_fantome = { version = "0.6.1", path = "../ltk_fantome" } glob = "0.3.2" semver = "1.0.25" binrw = "0.14.1" diff --git a/crates/ltk_fantome/CHANGELOG.md b/crates/ltk_fantome/CHANGELOG.md index bcec5b2..2afa3ed 100644 --- a/crates/ltk_fantome/CHANGELOG.md +++ b/crates/ltk_fantome/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.1](https://github.com/LeagueToolkit/league-mod/compare/ltk_fantome-v0.6.0...ltk_fantome-v0.6.1) - 2026-07-06 + +### Other + +- update Cargo.toml dependencies + ## [0.6.0](https://github.com/LeagueToolkit/league-mod/compare/ltk_fantome-v0.5.1...ltk_fantome-v0.6.0) - 2026-07-03 ### Added diff --git a/crates/ltk_fantome/Cargo.toml b/crates/ltk_fantome/Cargo.toml index b870a50..521255a 100644 --- a/crates/ltk_fantome/Cargo.toml +++ b/crates/ltk_fantome/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ltk_fantome" -version = "0.6.0" +version = "0.6.1" edition = "2024" license = "MIT OR Apache-2.0" description = "Helper library for working with League of Legends mods in the legacy Fantome format" diff --git a/crates/ltk_overlay/CHANGELOG.md b/crates/ltk_overlay/CHANGELOG.md index 0e79151..9007a55 100644 --- a/crates/ltk_overlay/CHANGELOG.md +++ b/crates/ltk_overlay/CHANGELOG.md @@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.5.1](https://github.com/LeagueToolkit/league-mod/compare/ltk_overlay-v0.5.0...ltk_overlay-v0.5.1) - 2026-07-06 + +### Added + +- *(ltk_overlay)* preserve original WAD signature when patching + +### Fixed + +- *(ltk_overlay)* respect overrides filter in all passes + ## [0.5.0](https://github.com/LeagueToolkit/league-mod/compare/ltk_overlay-v0.4.0...ltk_overlay-v0.5.0) - 2026-07-03 ### Fixed diff --git a/crates/ltk_overlay/Cargo.toml b/crates/ltk_overlay/Cargo.toml index 8df5fd3..a3dead2 100644 --- a/crates/ltk_overlay/Cargo.toml +++ b/crates/ltk_overlay/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ltk_overlay" -version = "0.5.0" +version = "0.5.1" edition = "2024" license = "MIT OR Apache-2.0" description = "WAD overlay/profile builder for League of Legends mods" @@ -17,7 +17,7 @@ ltk_wad = { workspace = true } ltk_file = "0.2.8" ltk_mod_project = { version = "0.5.0", path = "../ltk_mod_project" } ltk_modpkg = { version = "0.6.0", path = "../ltk_modpkg" } -ltk_fantome = { version = "0.6.0", path = "../ltk_fantome" } +ltk_fantome = { version = "0.6.1", path = "../ltk_fantome" } indexmap = { workspace = true } ltk_rst = "0.2.0"