diff --git a/CHANGELOG.md b/CHANGELOG.md index 825c32f..5b2fe45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,16 @@ # Changelog + +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). + +## [Unreleased] + +## [0.1.2](https://github.com/SecurityRonin/xpress-huffman/compare/xpress-huffman-v0.1.1...xpress-huffman-v0.1.2) - 2026-07-25 + +### Fixed + +- *(vet)* declare own crates first-party so version bumps don't break supply-chain audit +- *(release-plz)* drop fuzz-crate override (separate workspace, not a member — fixes 'determine next versions') +# Changelog diff --git a/Cargo.lock b/Cargo.lock index dd82ea5..eaab434 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 4 [[package]] name = "xpress-huffman" -version = "0.1.1" +version = "0.1.2" diff --git a/Cargo.toml b/Cargo.toml index 0af8115..6ce939d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xpress-huffman" -version = "0.1.1" +version = "0.1.2" edition = "2021" rust-version = "1.85" description = "Pure-Rust, panic-free decompressor for Microsoft Xpress-Huffman ([MS-XCA] §2.2.4, LZXPRESS_HUFFMAN) — the codec behind Win10+ prefetch (MAM), hiberfil.sys, SMB3 and registry-hive compression. Cross-platform, no Windows API."