diff --git a/CHANGELOG.md b/CHANGELOG.md index 32c604f..ef215de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/mcarvin8/xml-disassembler-rust/compare/v0.2.0...v0.3.0) - 2026-02-11 + +### Added + +- *(disassemble)* add multi-level disassembly support ([#15](https://github.com/mcarvin8/xml-disassembler-rust/pull/15)) + ## [0.2.0](https://github.com/mcarvin8/xml-disassembler-rust/compare/v0.1.6...v0.2.0) - 2026-02-09 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index d6c7b79..f986cec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -841,7 +841,7 @@ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" [[package]] name = "xml-disassembler" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 72d6124..7252f1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xml-disassembler" -version = "0.2.0" +version = "0.3.0" edition = "2021" description = "Disassemble large XML files into smaller files and reassemble the original XML." repository = "https://github.com/mcarvin8/xml-disassembler-rust"