diff --git a/bcc.spec b/bcc.spec index 1cc0bb7..d70bc39 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.0.0", - "CFBundleVersion": "1.0.0", + "CFBundleShortVersionString": "1.2.1", + "CFBundleVersion": "1.2.1", "NSHighResolutionCapable": True, "NSRequiresAquaSystemAppearance": False, # supports dark mode "LSMinimumSystemVersion": "11.0", diff --git a/bcc_core.py b/bcc_core.py index 5fa75b9..be511cf 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.2.0" +__version__ = "1.2.1" 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 80de5d6..73b3411 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "better-claude-config" -version = "1.2.0" +version = "1.2.1" description = "Cross-platform GUI for editing the mcpServers block of Claude Desktop and Claude Code configs" readme = "README.md" license = { file = "LICENSE" }