diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index d524c7d..da510f7 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -8,7 +8,7 @@ "name": "dsct", "source": "./", "description": "LLM-friendly packet dissector with MCP server for pcap/pcapng analysis", - "version": "0.2.9", + "version": "0.2.10", "homepage": "https://github.com/higebu/dsct", "repository": "https://github.com/higebu/dsct", "license": "MIT OR Apache-2.0", diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 9ef799c..074e3ee 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "dsct", "description": "LLM-friendly packet dissector with MCP server for pcap/pcapng analysis", - "version": "0.2.9", + "version": "0.2.10", "author": { "name": "higebu" }, diff --git a/CHANGELOG.md b/CHANGELOG.md index 5085214..b7c78f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ 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.2.10] - 2026-04-23 + +### 🚀 Features + +- *(read)* Add --raw-bytes option to emit original packet bytes + +### ⚙️ Miscellaneous Tasks + +- *(release)* Surface dependency bumps in release PR changelog ## [0.2.8] - 2026-04-15 ### 📚 Documentation diff --git a/Cargo.lock b/Cargo.lock index e3ae164..a408461 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -587,7 +587,7 @@ dependencies = [ [[package]] name = "dsct" -version = "0.2.9" +version = "0.2.10" dependencies = [ "assert_cmd", "clap", diff --git a/Cargo.toml b/Cargo.toml index effd0fd..664420c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dsct" -version = "0.2.9" +version = "0.2.10" edition = "2024" license = "MIT OR Apache-2.0" rust-version = "1.88"