Metadata-Version: 2.1
Name: track-bump
Version: 0.2.3
Summary: 
Author: Julien Brayere
Author-email: julien.brayere@tracktor.fr
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: piou (>=0.14.2,<0.15.0)
Description-Content-Type: text/markdown

# Track-bump 


Utility library to bump the version / tags or a project repository
following the following pattern:

![CI](./static/ci.png)

# 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
```


