mirror of
https://github.com/trycua/computer.git
synced 2026-01-03 12:00:00 -06:00
Merge pull request #463 from trycua/b2v
Add bump2version configuration for all Python packages
This commit is contained in:
10
libs/python/agent/.bumpversion.cfg
Normal file
10
libs/python/agent/.bumpversion.cfg
Normal 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}"
|
||||
@@ -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 = [
|
||||
|
||||
10
libs/python/computer-server/.bumpversion.cfg
Normal file
10
libs/python/computer-server/.bumpversion.cfg
Normal 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}"
|
||||
@@ -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" }
|
||||
|
||||
10
libs/python/computer/.bumpversion.cfg
Normal file
10
libs/python/computer/.bumpversion.cfg
Normal 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}"
|
||||
10
libs/python/core/.bumpversion.cfg
Normal file
10
libs/python/core/.bumpversion.cfg
Normal 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}"
|
||||
@@ -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 = [
|
||||
|
||||
10
libs/python/mcp-server/.bumpversion.cfg
Normal file
10
libs/python/mcp-server/.bumpversion.cfg
Normal 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}"
|
||||
@@ -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"}
|
||||
]
|
||||
|
||||
10
libs/python/pylume/.bumpversion.cfg
Normal file
10
libs/python/pylume/.bumpversion.cfg
Normal 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}"
|
||||
@@ -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",
|
||||
|
||||
10
libs/python/som/.bumpversion.cfg
Normal file
10
libs/python/som/.bumpversion.cfg
Normal 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}"
|
||||
@@ -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" }
|
||||
|
||||
Reference in New Issue
Block a user