From 45e8e3a81eacededaedea1263a0efaf61cb8d2f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 27 Jan 2024 12:43:10 +0000 Subject: [PATCH] release 2.8.0 (previous release 2.7.0) --- changelog.md | 17 +++++++++++++++++ dlunch/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 760d2aa..e12fb4e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,20 @@ +## v2.8.0 (2024-01-27) + +### Feat + +- **__main__.py**: add an /health endpoint +- add azure as oauth provider and improve config files to handle different auth approaches + +### Fix + +- **cli.py**: fix error in __version__ evaluation +- **auth.py-is_basic_auth_active**: fix error when returning the result of is_basic_auth_active +- fix reference to psw_special_chars + +### Refactor + +- **package-name**: change package name from data_lunch_app to dlunch + ## v2.7.0 (2024-01-02) ### Feat diff --git a/dlunch/__init__.py b/dlunch/__init__.py index b160f7e..196f662 100755 --- a/dlunch/__init__.py +++ b/dlunch/__init__.py @@ -1,5 +1,5 @@ # App metadata -__version__ = "2.7.0" +__version__ = "2.8.0" import importlib.resources import pathlib diff --git a/pyproject.toml b/pyproject.toml index f14aed4..5dee3c1 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dlunch" -version = "2.7.0" +version = "2.8.0" authors = [ { name="Michele Alberti", email="michele.alberti90@gmail.com" }, ] @@ -52,7 +52,7 @@ exclude = ''' [tool.commitizen] name = "cz_conventional_commits" -version = "2.7.0" +version = "2.8.0" version_files = [ "dlunch/__init__.py", "pyproject.toml:version",