diff --git a/crates/league-toolkit/CHANGELOG.md b/crates/league-toolkit/CHANGELOG.md index fddc946b..780ea980 100644 --- a/crates/league-toolkit/CHANGELOG.md +++ b/crates/league-toolkit/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. 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.2.25](https://github.com/LeagueToolkit/league-toolkit/compare/league-toolkit-v0.2.24...league-toolkit-v0.2.25) - 2026-07-24 + +### Other + +- updated the following local packages: ltk_mesh + ## [0.2.24](https://github.com/LeagueToolkit/league-toolkit/compare/league-toolkit-v0.2.23...league-toolkit-v0.2.24) - 2026-07-12 ### Added diff --git a/crates/league-toolkit/Cargo.toml b/crates/league-toolkit/Cargo.toml index a2bbe450..afcea67f 100644 --- a/crates/league-toolkit/Cargo.toml +++ b/crates/league-toolkit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "league-toolkit" -version = "0.2.24" +version = "0.2.25" edition = "2021" description = "Toolkit library for serializing and editing various League of Legends formats" @@ -38,7 +38,7 @@ rst = ["dep:ltk_rst"] [dependencies] ltk_anim = { version = "0.3.6", path = "../ltk_anim", optional = true } ltk_file = { version = "0.2.10", path = "../ltk_file", optional = true } -ltk_mesh = { version = "0.4.4", path = "../ltk_mesh", optional = true } +ltk_mesh = { version = "0.5.0", path = "../ltk_mesh", optional = true } ltk_meta = { version = "0.6.1", path = "../ltk_meta", optional = true } ltk_primitives = { version = "0.3.5", path = "../ltk_primitives", optional = true } ltk_texture = { version = "0.6.0", path = "../ltk_texture", optional = true } diff --git a/crates/ltk_mapgeo/CHANGELOG.md b/crates/ltk_mapgeo/CHANGELOG.md index e9b591b3..aacd653c 100644 --- a/crates/ltk_mapgeo/CHANGELOG.md +++ b/crates/ltk_mapgeo/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. 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.1.6](https://github.com/LeagueToolkit/league-toolkit/compare/ltk_mapgeo-v0.1.5...ltk_mapgeo-v0.1.6) - 2026-07-24 + +### Added + +- *(ltk_mapgeo)* add v18 support + +### Other + +- update supported versions to include v18 and clarify unsupported v19/v20 details + ## [0.1.5](https://github.com/LeagueToolkit/league-toolkit/compare/ltk_mapgeo-v0.1.4...ltk_mapgeo-v0.1.5) - 2026-07-12 ### Added diff --git a/crates/ltk_mapgeo/Cargo.toml b/crates/ltk_mapgeo/Cargo.toml index 50dab089..cee2c08c 100644 --- a/crates/ltk_mapgeo/Cargo.toml +++ b/crates/ltk_mapgeo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ltk_mapgeo" -version = "0.1.5" +version = "0.1.6" edition = "2021" description = "Map Geometry (.mapgeo) parsing for League Toolkit" license = "MIT OR Apache-2.0" @@ -17,6 +17,6 @@ glam = { workspace = true } ltk_io_ext = { version = "0.4.4", path = "../ltk_io_ext" } ltk_primitives = { version = "0.3.5", path = "../ltk_primitives" } -ltk_mesh = { version = "0.4.4", path = "../ltk_mesh" } +ltk_mesh = { version = "0.5.0", path = "../ltk_mesh" } [dev-dependencies] diff --git a/crates/ltk_mesh/CHANGELOG.md b/crates/ltk_mesh/CHANGELOG.md index 1dceef2d..cd0eb08e 100644 --- a/crates/ltk_mesh/CHANGELOG.md +++ b/crates/ltk_mesh/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. 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.0](https://github.com/LeagueToolkit/league-toolkit/compare/ltk_mesh-v0.4.4...ltk_mesh-v0.5.0) - 2026-07-24 + +### Added + +- *(mesh)* add support for pbr vertex type and correct element enumsCan + ## [0.4.4](https://github.com/LeagueToolkit/league-toolkit/compare/ltk_mesh-v0.4.3...ltk_mesh-v0.4.4) - 2026-07-12 ### Added diff --git a/crates/ltk_mesh/Cargo.toml b/crates/ltk_mesh/Cargo.toml index 641b630f..7390966e 100644 --- a/crates/ltk_mesh/Cargo.toml +++ b/crates/ltk_mesh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ltk_mesh" -version = "0.4.4" +version = "0.5.0" edition = "2021" description = "Mesh parsing and structures for League Toolkit" license = "MIT OR Apache-2.0" diff --git a/crates/ltk_ritobin/CHANGELOG.md b/crates/ltk_ritobin/CHANGELOG.md index f3e6b035..6b1e835b 100644 --- a/crates/ltk_ritobin/CHANGELOG.md +++ b/crates/ltk_ritobin/CHANGELOG.md @@ -5,6 +5,39 @@ All notable changes to this project will be documented in this file. 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.6.0](https://github.com/LeagueToolkit/league-toolkit/compare/ltk_ritobin-v0.5.0...ltk_ritobin-v0.6.0) - 2026-07-24 + +### Added + +- *(ritobin)* actually set count in NotEnoughItems +- *(ritobin)* error on empty listlikes w/ needed count +- *(ritobin)* impl Index for String +- *(ritobin)* add more typecheck tests +- *(ritobin)* error when unexpected ListItemBlock in non block-like parent +- *(ritobin)* [**breaking**] unnest things from typecheck::visitor module +- *(ritobin)* bring back strict root non entry errors +- *(ritobin)* nicer root entry related diagnostics + +### Fixed + +- *(ritobin)* rename vecmath -> listlikes +- *(ritobin)* add NotEnoughItems tests for empty listlikes +- *(ritobin)* dedupe root entry err handling +- *(ritobin)* dedupe numeric parsing +- *(ritobin)* misreported InvalidRootEntryType RootKind +- *(ritobin)* panic on MissingRootEntry construction + +### Other + +- clippy + fmt +- *(ritobin)* dedupe some container push err handling +- *(ritobin)* clean up vecmath module +- *(ritobin)* code cleanup +- *(ritobin)* extract debug stuff +- *(ritobin)* more moving +- *(ritobin)* move some things around +- add proper root entries to some tests + ## [0.5.0](https://github.com/LeagueToolkit/league-toolkit/compare/ltk_ritobin-v0.4.0...ltk_ritobin-v0.5.0) - 2026-07-12 ### Added diff --git a/crates/ltk_ritobin/Cargo.toml b/crates/ltk_ritobin/Cargo.toml index 66053f48..17a539b1 100644 --- a/crates/ltk_ritobin/Cargo.toml +++ b/crates/ltk_ritobin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ltk_ritobin" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Ritobin text format parser and writer for League Toolkit" license = "MIT OR Apache-2.0"