diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 995567b..4913318 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.34.6 +current_version = 0.34.7 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 d51928d..2dfa91c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 0.34.7 (fork-0.34.7) (2023-06-28) + +- fix: missing import + ## 0.34.6 (fork-0.34.6) (2023-06-27) - fix: filtering operator `between` was not correctly implemented for SQLAlchemy diff --git a/docs/conf.py b/docs/conf.py index b5f5004..ace7ed8 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.34.6" +release = "0.34.7" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/flask_rest_jsonapi_next/__init__.py b/flask_rest_jsonapi_next/__init__.py index 4b8aed5..2dd133e 100644 --- a/flask_rest_jsonapi_next/__init__.py +++ b/flask_rest_jsonapi_next/__init__.py @@ -2,7 +2,7 @@ # isort: skip_file # fmt: off -__version__ = "0.34.6" +__version__ = "0.34.7" from .api import Api from .resource import ResourceList, ResourceDetail, ResourceRelationship diff --git a/flask_rest_jsonapi_next/error_responses/exception_converters/registry.py b/flask_rest_jsonapi_next/error_responses/exception_converters/registry.py index 2e33c53..3653147 100644 --- a/flask_rest_jsonapi_next/error_responses/exception_converters/registry.py +++ b/flask_rest_jsonapi_next/error_responses/exception_converters/registry.py @@ -46,6 +46,7 @@ def register(cls, klass): @classmethod def get_converted_data(cls, err): from .sqlalchemy import GenericSQLAlchemyErrorConverter + from .base import GenericErrorConverter data = None diff --git a/pyproject.toml b/pyproject.toml index a7a9e7d..7caf7fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "flask-rest-jsonapi-next" -version = "0.34.6" +version = "0.34.7" 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 = [