bump: version 0.1.0 → 0.2.0

This commit is contained in:
Azmog 2026-06-16 16:28:21 +02:00
parent 3046715ba1
commit 5a2e08df9b
2 changed files with 6 additions and 1 deletions

5
site/CHANGELOG.md Normal file
View file

@ -0,0 +1,5 @@
## v0.2.0 (2026-06-16)
### Feat
- mise en place du workflow GitFlow et du versioning par tags (commitizen)

View file

@ -4,7 +4,7 @@
# en fonction des commits conventionnels, puis crée le tag git correspondant. # en fonction des commits conventionnels, puis crée le tag git correspondant.
[tool.commitizen] [tool.commitizen]
name = "cz_conventional_commits" # Type de commits : Conventional Commits (feat:, fix:, ...) name = "cz_conventional_commits" # Type de commits : Conventional Commits (feat:, fix:, ...)
version = "0.1.0" # <== NUMÉRO DE VERSION du projet version = "0.2.0" # <== NUMÉRO DE VERSION du projet
version_scheme = "semver" # Versionnage sémantique MAJEUR.MINEUR.CORRECTIF version_scheme = "semver" # Versionnage sémantique MAJEUR.MINEUR.CORRECTIF
tag_format = "v$version" # Format des tags de release : v0.1.0, v0.2.0, ... tag_format = "v$version" # Format des tags de release : v0.1.0, v0.2.0, ...
major_version_zero = true # Tant que la version commence par 0.x, pas de passage en 1.0 automatique major_version_zero = true # Tant que la version commence par 0.x, pas de passage en 1.0 automatique