Initial commit
Co-Authored-By: Quentin Torroba <quentin.torroba@mistral.ai> Co-Authored-By: Laure Hugo <laure.hugo@mistral.ai> Co-Authored-By: Benjamin Trom <benjamin.trom@mistral.ai> Co-Authored-By: Mathias Gesbert <mathias.gesbert@ext.mistral.ai> Co-Authored-By: Michel Thomazo <michel.thomazo@mistral.ai> Co-Authored-By: Clément Drouin <clement.drouin@mistral.ai> Co-Authored-By: Vincent Guilloux <vincent.guilloux@mistral.ai> Co-Authored-By: Valentin Berard <val@mistral.ai> Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
commit
fa15fc977b
200 changed files with 30484 additions and 0 deletions
20
scripts/README.md
Normal file
20
scripts/README.md
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Project Management Scripts
|
||||
|
||||
This directory contains scripts that support project versioning and deployment workflows.
|
||||
|
||||
## Versioning
|
||||
|
||||
### Usage
|
||||
|
||||
```bash
|
||||
# Bump major version (1.0.0 -> 2.0.0)
|
||||
uv run scripts/bump_version.py major
|
||||
|
||||
# Bump minor version (1.0.0 -> 1.1.0)
|
||||
uv run scripts/bump_version.py minor
|
||||
|
||||
# Bump patch/micro version (1.0.0 -> 1.0.1)
|
||||
uv run scripts/bump_version.py micro
|
||||
# or
|
||||
uv run scripts/bump_version.py patch
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue