From 8c718387c063a19a1687b852b4a22ba539684f74 Mon Sep 17 00:00:00 2001 From: Cowork Supervisor Date: Tue, 7 Jul 2026 22:14:49 -0400 Subject: [PATCH] chore: bump version to 1.2.0 for release --- bcc_core.py | 2 +- pyproject.toml | 2 +- tests/test_core.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bcc_core.py b/bcc_core.py index 98c9a48..0ecce10 100644 --- a/bcc_core.py +++ b/bcc_core.py @@ -59,7 +59,7 @@ KNOWN_FIELDS = {"command", "args", "env", "url", "type", "headers"} # binary. All network I/O here is fail-quiet (returns None on any problem) # so it's safe to run unattended, off the UI thread, at startup. # --------------------------------------------------------------------------- # -__version__ = "1.1.0" +__version__ = "1.2.0" REPO_URL = "https://git.avezzano.io/the_og/better-claude-config" ISSUES_URL = f"{REPO_URL}/issues" diff --git a/pyproject.toml b/pyproject.toml index 12d09ef..80de5d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "better-claude-config" -version = "1.1.0" +version = "1.2.0" description = "Cross-platform GUI for editing the mcpServers block of Claude Desktop and Claude Code configs" readme = "README.md" license = { file = "LICENSE" } diff --git a/tests/test_core.py b/tests/test_core.py index adbe807..880a94b 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -920,7 +920,7 @@ def test_restart_claude_desktop_linux_popen_failure_reported(monkeypatch): def test_dunder_version_matches_pyproject(): # Guards against the version drifting out of sync between the two places # a human might bump it. - assert c.__version__ == "1.1.0" + assert c.__version__ == "1.2.0" def test_parse_version_basic():