diff --git a/Cargo.lock b/Cargo.lock index 304bf2d..e692d3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "auditable-extract" -version = "0.3.4" +version = "0.3.5" dependencies = [ "binfarce", "wasmparser", diff --git a/auditable-extract/CHANGELOG.md b/auditable-extract/CHANGELOG.md index 84e3a19..0311174 100644 --- a/auditable-extract/CHANGELOG.md +++ b/auditable-extract/CHANGELOG.md @@ -5,12 +5,21 @@ 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.3.5] - 2024-10-14 + +### Changed + + - When extracting audit data from WASM, nested sections are now also checked for audit data. This makes extraction work for WebAssembly components. + ## [0.3.4] - 2024-05-08 ### Changed - Upgraded to `wasmparser` 0.207.0, removing nearly all dependencies with `unsafe` code in them - Enabled the `wasm` feature by default now that it doesn't pull in `unsafe` code + +### Added + - This changelog file ## [0.3.3] - 2024-05-03 diff --git a/auditable-extract/Cargo.toml b/auditable-extract/Cargo.toml index b49e5c0..fcd17ff 100644 --- a/auditable-extract/Cargo.toml +++ b/auditable-extract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "auditable-extract" -version = "0.3.4" +version = "0.3.5" authors = ["Sergey \"Shnatsel\" Davidoff "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-secure-code/cargo-auditable"