Skip to content

Commit d61aede

Browse files
committed
chore: bump version to 0.5.0
1 parent df8a625 commit d61aede

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "autocode",
3-
"version": "0.4.1",
3+
"version": "0.5.0",
44
"description": "Claude Code plugin for competitive programming problem-setting workflows.",
55
"author": {
66
"name": "SummerOneTwo",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "autocode-mcp"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
description = "MCP Server for competitive programming problem creation, based on AutoCode paper"
55
readme = "README.md"
66
requires-python = ">=3.10"

src/autocode_mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77
import os
88

9-
__version__ = "0.4.1"
9+
__version__ = "0.5.0"
1010

1111
# 获取 templates 目录路径(包内目录)
1212
_PACKAGE_DIR = os.path.dirname(__file__)

tests/test_packaging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def test_import():
1111
"""测试模块导入。"""
1212
from autocode_mcp import __version__
1313

14-
assert __version__ == "0.4.1"
14+
assert __version__ == "0.5.0"
1515

1616

1717
def test_tool_result():

tests/test_plugin_manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def test_claude_plugin_manifest_links_mcp_config():
1111
manifest = json.loads(Path(".claude-plugin/plugin.json").read_text(encoding="utf-8"))
1212

1313
assert manifest["name"] == "autocode"
14-
assert manifest["version"] == "0.4.1"
14+
assert manifest["version"] == "0.5.0"
1515

1616

1717
def test_claude_plugin_manifest_has_interface_metadata():

0 commit comments

Comments
 (0)