https://github.com/tracktor/track-bump
https://github.com/tracktor/track-bump
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/tracktor/track-bump
- Owner: Tracktor
- Created: 2024-07-22T10:03:35.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-21T09:18:41.000Z (over 1 year ago)
- Last Synced: 2025-02-07T04:42:04.611Z (over 1 year ago)
- Language: Python
- Size: 215 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Track-bump
Utility library to bump the version / tags or a project repository
following the following pattern:

# How to use
1. Update your **pyproject.toml** or `.cz.toml` file with the following:
```toml
[tool.track-bump]
version = "0.1.0"
version_files = [
"sub-project-1/pyproject.toml",
"sub-project-2/pyproject.toml"
]
bump_message = "chore: release {current_version} → {new_version} [skip ci]"
```
2. Run the following command from inside your project:
```bash
poetry run track-bump
```
or with **pipx**
```bash
pipx run track-bump
```