diff --git a/changelog.md b/changelog.md index 9c787cb..3375051 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,18 @@ +## v3.0.0 (2024-03-17) + +### BREAKING CHANGE + +- move notes from user to order + +### Feat + +- move notes from user to menu items and adapt excel file to this change + +### Fix + +- use config file to define note column name in every widget and excel table +- **gui-config**: fix major_release and women_day config files + ## v2.14.0 (2024-03-11) ### Feat diff --git a/dlunch/__init__.py b/dlunch/__init__.py index cfa02de..c2118c4 100755 --- a/dlunch/__init__.py +++ b/dlunch/__init__.py @@ -1,5 +1,5 @@ # App metadata -__version__ = "2.14.0" +__version__ = "3.0.0" import importlib.resources import pathlib diff --git a/pyproject.toml b/pyproject.toml index dd15ea3..aa9eb2c 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dlunch" -version = "2.14.0" +version = "3.0.0" authors = [ { name="Michele Alberti", email="michele.alberti90@gmail.com" }, ] @@ -52,7 +52,7 @@ exclude = ''' [tool.commitizen] name = "cz_conventional_commits" -version = "2.14.0" +version = "3.0.0" version_files = [ "dlunch/__init__.py", "pyproject.toml:version",