Merge pull request #463 from trycua/b2v

Add bump2version configuration for all Python packages
This commit is contained in:
James Murdza
2025-10-14 17:13:27 -07:00
committed by GitHub
15 changed files with 309 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
[bumpversion]
current_version = 0.4.32
commit = True
tag = True
tag_name = agent-v{new_version}
message = Bump cua-agent to v{new_version}
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

View File

@@ -4,7 +4,7 @@ build-backend = "pdm.backend"
[project]
name = "cua-agent"
version = "0.4.0"
version = "0.4.32"
description = "CUA (Computer Use) Agent for AI-driven computer interaction"
readme = "README.md"
authors = [

View File

@@ -0,0 +1,10 @@
[bumpversion]
current_version = 0.1.24
commit = True
tag = True
tag_name = computer-server-v{new_version}
message = Bump cua-computer-server to v{new_version}
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

View File

@@ -5,6 +5,7 @@ build-backend = "pdm.backend"
[project]
name = "cua-computer-server"
version = "0.1.24"
description = "Server component for the Computer-Use Interface (CUI) framework powering Cua"
authors = [
{ name = "TryCua", email = "gh@trycua.com" }

View File

@@ -0,0 +1,10 @@
[bumpversion]
current_version = 0.4.7
commit = True
tag = True
tag_name = computer-v{new_version}
message = Bump cua-computer to v{new_version}
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

View File

@@ -0,0 +1,10 @@
[bumpversion]
current_version = 0.1.9
commit = True
tag = True
tag_name = core-v{new_version}
message = Bump cua-core to v{new_version}
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

View File

@@ -4,7 +4,7 @@ build-backend = "pdm.backend"
[project]
name = "cua-core"
version = "0.1.8"
version = "0.1.9"
description = "Core functionality for Cua including telemetry and shared utilities"
readme = "README.md"
authors = [

View File

@@ -0,0 +1,10 @@
[bumpversion]
current_version = 0.1.13
commit = True
tag = True
tag_name = mcp-server-v{new_version}
message = Bump cua-mcp-server to v{new_version}
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

View File

@@ -7,7 +7,7 @@ name = "cua-mcp-server"
description = "MCP Server for Computer-Use Agent (CUA)"
readme = "README.md"
requires-python = ">=3.11"
version = "0.1.0"
version = "0.1.13"
authors = [
{name = "TryCua", email = "gh@trycua.com"}
]

View File

@@ -0,0 +1,10 @@
[bumpversion]
current_version = 0.2.1
commit = True
tag = True
tag_name = pylume-v{new_version}
message = Bump pylume to v{new_version}
[bumpversion:file:pylume/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

View File

@@ -35,7 +35,7 @@ from .models import (
# Import main class last to avoid circular imports
from .pylume import PyLume
__version__ = "0.2.2"
__version__ = "0.2.1"
__all__ = [
"PyLume",

View File

@@ -0,0 +1,10 @@
[bumpversion]
current_version = 0.1.3
commit = True
tag = True
tag_name = som-v{new_version}
message = Bump cua-som to v{new_version}
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

View File

@@ -4,7 +4,7 @@ build-backend = "pdm.backend"
[project]
name = "cua-som"
version = "0.1.0"
version = "0.1.3"
description = "Computer Vision and OCR library for detecting and analyzing UI elements"
authors = [
{ name = "TryCua", email = "gh@trycua.com" }