diff --git a/changelog.md b/changelog.md index 57121ca..9c787cb 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,15 @@ +## v2.14.0 (2024-03-11) + +### Feat + +- **core.py**: hide columns with details about single orders +- change text input source in widget to value_input + +### Fix + +- **gui.py**: fix bug in TexInput widget from param that do not set value_input correctly +- **core.py**: fix error in note widget selection + ## v2.13.0 (2024-03-07) ### Feat diff --git a/dlunch/__init__.py b/dlunch/__init__.py index e87ce28..1204818 100755 --- a/dlunch/__init__.py +++ b/dlunch/__init__.py @@ -1,5 +1,5 @@ # App metadata -__version__ = "2.13.0" +__version__ = "2.14.0" import importlib.resources import pathlib diff --git a/pyproject.toml b/pyproject.toml index 2654a89..dd15ea3 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dlunch" -version = "2.13.0" +version = "2.14.0" authors = [ { name="Michele Alberti", email="michele.alberti90@gmail.com" }, ] @@ -52,7 +52,7 @@ exclude = ''' [tool.commitizen] name = "cz_conventional_commits" -version = "2.13.0" +version = "2.14.0" version_files = [ "dlunch/__init__.py", "pyproject.toml:version",