From efba68202ebe5b49c79d071ba3dbfce9a8f4ce5b Mon Sep 17 00:00:00 2001 From: David <39418842+CheeseCake87@users.noreply.github.com> Date: Fri, 22 Nov 2024 19:51:52 +0000 Subject: [PATCH] match main (#19) * doc header fixes * remove old docs * fix static path error * fix static path error * refresh logo * fix build errors, update changes * update version * fix build errors, update changes * update version * add DS_Store to git ignore --- .gitignore | 2 ++ CHANGES.md | 4 +++- pyproject.toml | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 35ac867f..6edd8c6a 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ docs/_build/ tests/instance/ example/instance/ _tool.py +.DS_Store +*/.DS_Store diff --git a/CHANGES.md b/CHANGES.md index 61f1078b..40d1e8ce 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,4 +7,6 @@ Released 2024-11-21 - updated project structure. - docs now using sphinx + readthedocs. - the start of the changes.md file. - +- changes to the order of arguments in database configs +- argument 'name' changed to 'database_name' in configs +- addition of abort_status and fail_status args in security decorators diff --git a/pyproject.toml b/pyproject.toml index acac4a3e..6cac7695 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,10 @@ [project] name = "flask-imp" -version = "5.4.0" +version = "5.5.0" description = 'A Flask auto importer that allows your Flask apps to grow big.' authors = [{ name = "David Carmichael", email = "david@uilix.com" }] readme = "README.md" -license = { file = "LICENSE" } +license = { file = "LICENSE.txt" } classifiers = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Intended Audience :: Developers',