mirror of
https://github.com/trycua/computer.git
synced 2026-01-06 13:30:06 -06:00
Add bump2version configuration for all Python packages
Adds .bumpversion.cfg files to each Python package (agent, computer, computer-server, core, mcp-server, pylume, som) to enable automated version bumping with bump2version tool. Includes comprehensive Makefile with targets for: - Installing and managing bump2version - Bumping package versions (major, minor, patch) - Managing dependencies and building packages - Running tests and formatting - Cleaning build artifacts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
9
libs/python/agent/.bumpversion.cfg
Normal file
9
libs/python/agent/.bumpversion.cfg
Normal file
@@ -0,0 +1,9 @@
|
||||
[bumpversion]
|
||||
current_version = 0.4.0
|
||||
commit = True
|
||||
tag = False
|
||||
message = Bump cua-agent to v{new_version}
|
||||
|
||||
[bumpversion:file:pyproject.toml]
|
||||
search = version = "{current_version}"
|
||||
replace = version = "{new_version}"
|
||||
9
libs/python/computer-server/.bumpversion.cfg
Normal file
9
libs/python/computer-server/.bumpversion.cfg
Normal file
@@ -0,0 +1,9 @@
|
||||
[bumpversion]
|
||||
current_version = 0.1.0
|
||||
commit = True
|
||||
tag = False
|
||||
message = Bump cua-computer-server to v{new_version}
|
||||
|
||||
[bumpversion:file:pyproject.toml]
|
||||
search = version = "{current_version}"
|
||||
replace = version = "{new_version}"
|
||||
9
libs/python/computer/.bumpversion.cfg
Normal file
9
libs/python/computer/.bumpversion.cfg
Normal file
@@ -0,0 +1,9 @@
|
||||
[bumpversion]
|
||||
current_version = 0.4.0
|
||||
commit = True
|
||||
tag = False
|
||||
message = Bump cua-computer to v{new_version}
|
||||
|
||||
[bumpversion:file:pyproject.toml]
|
||||
search = version = "{current_version}"
|
||||
replace = version = "{new_version}"
|
||||
9
libs/python/core/.bumpversion.cfg
Normal file
9
libs/python/core/.bumpversion.cfg
Normal file
@@ -0,0 +1,9 @@
|
||||
[bumpversion]
|
||||
current_version = 0.1.8
|
||||
commit = True
|
||||
tag = False
|
||||
message = Bump cua-core to v{new_version}
|
||||
|
||||
[bumpversion:file:pyproject.toml]
|
||||
search = version = "{current_version}"
|
||||
replace = version = "{new_version}"
|
||||
9
libs/python/mcp-server/.bumpversion.cfg
Normal file
9
libs/python/mcp-server/.bumpversion.cfg
Normal file
@@ -0,0 +1,9 @@
|
||||
[bumpversion]
|
||||
current_version = 0.1.0
|
||||
commit = True
|
||||
tag = False
|
||||
message = Bump cua-mcp-server to v{new_version}
|
||||
|
||||
[bumpversion:file:pyproject.toml]
|
||||
search = version = "{current_version}"
|
||||
replace = version = "{new_version}"
|
||||
9
libs/python/pylume/.bumpversion.cfg
Normal file
9
libs/python/pylume/.bumpversion.cfg
Normal file
@@ -0,0 +1,9 @@
|
||||
[bumpversion]
|
||||
current_version = 0.2.2
|
||||
commit = True
|
||||
tag = False
|
||||
message = Bump pylume to v{new_version}
|
||||
|
||||
[bumpversion:file:pylume/__init__.py]
|
||||
search = __version__ = "{current_version}"
|
||||
replace = __version__ = "{new_version}"
|
||||
9
libs/python/som/.bumpversion.cfg
Normal file
9
libs/python/som/.bumpversion.cfg
Normal file
@@ -0,0 +1,9 @@
|
||||
[bumpversion]
|
||||
current_version = 0.1.0
|
||||
commit = True
|
||||
tag = False
|
||||
message = Bump cua-som to v{new_version}
|
||||
|
||||
[bumpversion:file:pyproject.toml]
|
||||
search = version = "{current_version}"
|
||||
replace = version = "{new_version}"
|
||||
Reference in New Issue
Block a user