From 4afe21666d5b80c6835785c6880b450623a7935c Mon Sep 17 00:00:00 2001 From: Cowork Supervisor Date: Sun, 12 Jul 2026 14:02:38 -0400 Subject: [PATCH] release: bump version to 1.3.0 Named server sets (#52), project .mcp.json discovery (#53), schema lint (#54), Ctrl+S + enable/disable-all (#55). Co-Authored-By: Claude Fable 5 --- bcc.spec | 4 ++-- bcc_core.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bcc.spec b/bcc.spec index d70bc39..cea2dac 100644 --- a/bcc.spec +++ b/bcc.spec @@ -78,8 +78,8 @@ if sys.platform == "darwin": info_plist={ "CFBundleName": "Better Claude Config", "CFBundleDisplayName": "Better Claude Config", - "CFBundleShortVersionString": "1.2.1", - "CFBundleVersion": "1.2.1", + "CFBundleShortVersionString": "1.3.0", + "CFBundleVersion": "1.3.0", "NSHighResolutionCapable": True, "NSRequiresAquaSystemAppearance": False, # supports dark mode "LSMinimumSystemVersion": "11.0", diff --git a/bcc_core.py b/bcc_core.py index ee2dba6..1bc1ccb 100644 --- a/bcc_core.py +++ b/bcc_core.py @@ -65,7 +65,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.2.1" +__version__ = "1.3.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 73b3411..1b0fa31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "better-claude-config" -version = "1.2.1" +version = "1.3.0" description = "Cross-platform GUI for editing the mcpServers block of Claude Desktop and Claude Code configs" readme = "README.md" license = { file = "LICENSE" }