diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 647c99c..19a824e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.40.0 +current_version = 0.41.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.dev(?P\d+))? serialize = {major}.{minor}.{patch}.dev{build} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0acb549..ca7b3aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## 0.410.0 (2023-07-26) + +- fix: don't log stacktrace for common exceptions +- fix: defend from empty filters + ## 0.40.0 (2023-07-21) - removed restriction on SQLAlchemy version, library now works with SQLAlchemy 2.x diff --git a/docs/conf.py b/docs/conf.py index 7ed6735..672c9c8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = "flask-rest-jsonapi-next" copyright = "2016-2021 miLibris; 2021-... miLibris, tadams42" author = "tadams42" -release = "0.40.0" +release = "0.41.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 2269677..006eb3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ requires = ["setuptools>=64", "wheel"] [project] name = "flask-rest-jsonapi-next" -version = "0.40.0" +version = "0.41.0" description = "Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow and data provider of your choice (SQLAlchemy, MongoDB, ...)" readme = "README.md" classifiers = [ diff --git a/src/flask_rest_jsonapi_next/__init__.py b/src/flask_rest_jsonapi_next/__init__.py index 197d0d7..03e7270 100644 --- a/src/flask_rest_jsonapi_next/__init__.py +++ b/src/flask_rest_jsonapi_next/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.40.0" +__version__ = "0.41.0" from .api import Api from .data_layers.alchemy import SqlalchemyDataLayer