From ee75fa3c7ef6127056f6922516dd39e8cb9dfb6d Mon Sep 17 00:00:00 2001 From: Matt Carvin <90224411+mcarvin8@users.noreply.github.com> Date: Wed, 11 Feb 2026 15:45:00 -0500 Subject: [PATCH] chore: release v0.3.0 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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"