Skip to content

Commit c02c138

Browse files
committed
chore: prepare 0.6.5 release
1 parent f5f5509 commit c02c138

7 files changed

Lines changed: 34 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<div align="center">
2+
<!-- mcp-name: io.github.bx33661/wireshark-mcp -->
23

34
<br>
45

README_zh.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<div align="center">
2+
<!-- mcp-name: io.github.bx33661/wireshark-mcp -->
23

34
<br>
45

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "wireshark-mcp"
7-
version = "0.6.4"
7+
version = "0.6.5"
88
description = "A production-grade Model Context Protocol (MCP) server for Wireshark"
99
readme = "README.md"
1010
keywords = ["mcp", "wireshark", "tshark", "packet-analysis", "network", "pcap", "model-context-protocol", "llm", "security"]

server.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3+
"name": "io.github.bx33661/wireshark-mcp",
4+
"description": "Professional network analysis with tshark. Security audits, deep-dives, and threat detection.",
5+
"repository": {
6+
"url": "https://github.com/bx33661/Wireshark-MCP",
7+
"source": "github"
8+
},
9+
"version": "0.6.5",
10+
"packages": [
11+
{
12+
"registryType": "pypi",
13+
"identifier": "wireshark-mcp",
14+
"version": "0.6.5",
15+
"runtimeHint": "uvx",
16+
"transport": {
17+
"type": "stdio"
18+
}
19+
}
20+
],
21+
"websiteUrl": "https://github.com/bx33661/Wireshark-MCP"
22+
}

src/wireshark_mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Wireshark MCP - A Model Context Protocol server for Wireshark.
33
"""
44

5-
__version__ = "0.6.4"
5+
__version__ = "0.6.5"

tests/test_server.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
"""Tests for server bootstrap behavior."""
22

3+
from importlib import metadata
4+
5+
import wireshark_mcp
36
import wireshark_mcp.server as server
47

58

@@ -45,3 +48,7 @@ class FakePolicy:
4548
server._configure_windows_event_loop()
4649

4750
assert applied == []
51+
52+
53+
def test_package_version_matches_installed_metadata():
54+
assert wireshark_mcp.__version__ == metadata.version("wireshark-mcp")

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)