diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2366cc5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,22 @@ +# Changelog + +- v0.1.0 : first release + - Basic first functionalities for grouped orders + +- v0.2.0 + - Block order for an item when the max quantity is reached + - Block order on the grouped order when the dealine is crossed + +- v0.3.0 : Fixes for V0 + - fix bug : we cannot order when there is no item available + +- v0.3.1 : first front improvements for V1 + - add icons + - improve order form on mobile + +- v0.4.0 : improve Grouped Orders management + - improve frontend on overview page and grouped order creation page + - view order detail on click + - email list download + - update, duplicate and delete grouped order + - warning when we create a grouped order with deadline in the past diff --git a/README.md b/README.md index 9d65fe6..ddf1d1d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# La Chariotte | 1.1.1 +# La Chariotte | 0.4.0 ## Présentation @@ -21,6 +21,18 @@ Ensuite, un mainteneur de la Chariotte pourra relire votre code et proposer des Encore merci, et bon code ! +## Versions - semantic versionning + +Les fonctionnalités développées dans les différentes versions sont listées dans le fichier [CHANGELOG.md](https://gitlab.com/hashbangfr/la_chariotte/-/blob/main/CHANGELOG.md). Les versions sont de la forme vX.Y.Z + +Quand on merge sur develop, on incrémente Z. + +Quand on merge sur main, on incrémente Y. + +Quand une nouvelle version majeure de la Chariotte sort, avec la communication liée, on incrémente X. + +La version est à mettre à jour dans le README, dans le pyproject.toml et dans le footer (base.html). + ## Développement Cloner le projet : diff --git a/la_chariotte/templates/base.html b/la_chariotte/templates/base.html index c4b6ea6..4f6de63 100644 --- a/la_chariotte/templates/base.html +++ b/la_chariotte/templates/base.html @@ -130,7 +130,7 @@

- La Chariotte | version 0.2.0 + La Chariotte | version 0.4.0

diff --git a/pyproject.toml b/pyproject.toml index a9685ef..db8ccac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "la_chariotte" -version = "1.1.1" +version = "0.4.0" description = "Web application for organising grouped orders" authors = [{name = "Laetitia Getti", email = "laetitia@chariotte.fr"}] readme = "readMe.md"