Skip to content

Commit 72e0c32

Browse files
author
mcp-release-bot
committed
chore(release): bump version to 0.3.0
1 parent 7ff5667 commit 72e0c32

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mcp-as-a-judge"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "MCP as a Judge: An AI-powered Model Context Protocol server that provides code review, validation, and quality assessment tools for development workflows"
55
readme = "README.md"
66
license = { text = "MIT" }

scripts/bump_version.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def _write_text(path: Path, content: str) -> None:
4747
def extract_current_version() -> str:
4848
text = _read_text(PYPROJECT_PATH)
4949
# naive toml line parse to avoid adding deps
50-
m = re.search(r"^version\s*=\s*\"([^"]+)\"", text, re.MULTILINE)
50+
m = re.search(r'^version\s*=\s*"([^"]+)"', text, re.MULTILINE)
5151
if not m:
5252
print("ERROR: Could not find [project].version in pyproject.toml", file=sys.stderr)
5353
sys.exit(2)
@@ -57,8 +57,8 @@ def extract_current_version() -> str:
5757
def bump_pyproject(version: str) -> bool:
5858
content = _read_text(PYPROJECT_PATH)
5959
new_content, n = re.subn(
60-
r"^(version\s*=\s*)\"[^\"]+\"",
61-
rf"\1\"{version}\"",
60+
r'^(version\s*=\s*)"[^\"]+"',
61+
rf'\1"{version}"',
6262
content,
6363
flags=re.MULTILINE,
6464
)
@@ -74,8 +74,8 @@ def bump_pyproject(version: str) -> bool:
7474
def bump_init(version: str) -> bool:
7575
content = _read_text(INIT_PATH)
7676
new_content, n = re.subn(
77-
r"^__version__\s*=\s*\"[^\"]+\"",
78-
rf"__version__ = \"{version}\"",
77+
r'^__version__\s*=\s*"[^\"]+"',
78+
rf'__version__ = "{version}"',
7979
content,
8080
flags=re.MULTILINE,
8181
)

src/mcp_as_a_judge/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
against software engineering best practices.
66
"""
77

8-
__version__ = "1.0.0"
8+
__version__ = "0.3.0"
99

1010

1111
# Lazy imports to avoid dependency issues in Cloudflare Workers

0 commit comments

Comments
 (0)