diff --git a/docs/changelog.rst b/docs/changelog.rst index b557620c..9756c356 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,19 @@ Changelog ######### +**2.4.2** +********* + +Separate helper methods for relationships query +=============================================== + +* fix run validator: sometimes it requires model field by `@mahenzon`_ in `#70 `_ + +Authors +""""""" + +* `@mahenzon`_ + **2.4.1** ********* diff --git a/docs/conf.py b/docs/conf.py index 33f40fb3..a4420a16 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -66,7 +66,7 @@ # The short X.Y version. version = "2.4" # The full version, including alpha/beta/rc tags. -release = "2.4.1" +release = "2.4.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/fastapi_jsonapi/__init__.py b/fastapi_jsonapi/__init__.py index 2ea667b0..a67959a3 100644 --- a/fastapi_jsonapi/__init__.py +++ b/fastapi_jsonapi/__init__.py @@ -8,7 +8,7 @@ from fastapi_jsonapi.exceptions.json_api import HTTPException from fastapi_jsonapi.querystring import QueryStringManager -__version__ = "2.4.1" +__version__ = "2.4.2" __all__ = [ "init", diff --git a/pyproject.toml b/pyproject.toml index a57a91c1..66d39f05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,7 @@ packages = [ [tool.poetry] name = "fastapi-jsonapi" -version = "2.4.1" +version = "2.4.2" description = "FastAPI extension to create REST web api according to JSON:API specification" authors = [ "Aleksei Nekrasov ",