Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 27, 2024
2 parents 7d686cf + fc75814 commit 013dd46
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion dlunch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# App metadata
__version__ = "2.7.0"
__version__ = "2.8.0"

import importlib.resources
import pathlib
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
]
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 013dd46

Please sign in to comment.