From 7cc5ec1fbc6815881b72b63c5d12340b539c84dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Sat, 2 Nov 2024 16:17:22 +0100 Subject: [PATCH 1/2] Populate the changelog and bump the version to 1.3.0 --- CHANGELOG.md | 15 +++++++++++++++ la_chariotte/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 423cd03..b372e06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) since 0.4.1, and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 1.3.0 (2024-11-02) + +This is a small release, with a few features and bugfixes. The code is now +hosted on https://framagit.org rather than https://gitlab.com. + +### Added + +- Changed hour and date format in the generated CSV files +- Added the date in the grouped order dashboard +- Changed the display of the last possible date and hour to place an order + +### Fixed + +- The "reset password" form is now fixed, it was broken since the last release. + ## 1.2.0 (2024-07-12) A small release, with a few features, a new footer and a `/stats` endpoint. diff --git a/la_chariotte/__init__.py b/la_chariotte/__init__.py index c68196d..67bc602 100644 --- a/la_chariotte/__init__.py +++ b/la_chariotte/__init__.py @@ -1 +1 @@ -__version__ = "1.2.0" +__version__ = "1.3.0" From f784636e4315a5264fa8eaee8a3a927b1563fc13 Mon Sep 17 00:00:00 2001 From: xmeunier Date: Sat, 2 Nov 2024 18:06:21 +0100 Subject: [PATCH 2/2] Update Changelog to take into account MRs #113 and #117 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b372e06..a688249 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ hosted on https://framagit.org rather than https://gitlab.com. - Changed hour and date format in the generated CSV files - Added the date in the grouped order dashboard - Changed the display of the last possible date and hour to place an order +- Added the total number of ordered items in the grouped orders overview +- Removed header line and column for grouped order name in the CSV export for emails ### Fixed