mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-03 12:21:52 +02:00
versionning and changelog.md
This commit is contained in:
parent
1829ab75f4
commit
804e84f40c
4 changed files with 37 additions and 3 deletions
22
CHANGELOG.md
Normal file
22
CHANGELOG.md
Normal file
|
@ -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
|
14
README.md
14
README.md
|
@ -1,4 +1,4 @@
|
||||||
# La Chariotte | 1.1.1
|
# La Chariotte | 0.4.0
|
||||||
|
|
||||||
## Présentation
|
## Présentation
|
||||||
|
|
||||||
|
@ -21,6 +21,18 @@ Ensuite, un mainteneur de la Chariotte pourra relire votre code et proposer des
|
||||||
|
|
||||||
Encore merci, et bon code !
|
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
|
## Développement
|
||||||
|
|
||||||
Cloner le projet :
|
Cloner le projet :
|
||||||
|
|
|
@ -130,7 +130,7 @@
|
||||||
<div class="content has-text-centered columns">
|
<div class="content has-text-centered columns">
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<p>
|
<p>
|
||||||
<strong>La Chariotte</strong> | version 0.2.0
|
<strong>La Chariotte</strong> | version 0.4.0
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="column">
|
<div class="column">
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "la_chariotte"
|
name = "la_chariotte"
|
||||||
version = "1.1.1"
|
version = "0.4.0"
|
||||||
description = "Web application for organising grouped orders"
|
description = "Web application for organising grouped orders"
|
||||||
authors = [{name = "Laetitia Getti", email = "laetitia@chariotte.fr"}]
|
authors = [{name = "Laetitia Getti", email = "laetitia@chariotte.fr"}]
|
||||||
readme = "readMe.md"
|
readme = "readMe.md"
|
||||||
|
|
Loading…
Reference in a new issue