From 76b28b363a230585ffce6ed90e7a93f85592ca4a Mon Sep 17 00:00:00 2001 From: Suren Khorenyan Date: Tue, 19 Dec 2023 17:47:52 +0300 Subject: [PATCH] bump version to 2.4.1 --- docs/changelog.rst | 16 ++++++++++++++++ docs/conf.py | 2 +- fastapi_jsonapi/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index b09c888b..b557620c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,22 @@ Changelog ######### +**2.4.1** +********* + +Separate helper methods for relationships query +=============================================== + +* remove resource manager example since no resource manager exists by `@mahenzon`_ in `#66 `_ +* create separate methods for building query for fetching related objects by `@mahenzon`_ in `#67 `_ +* update ruff linter by `@mahenzon`_ in `#69 `_ + +Authors +""""""" + +* `@mahenzon`_ + + **2.4.0** ********* diff --git a/docs/conf.py b/docs/conf.py index 0199c975..33f40fb3 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.0" +release = "2.4.1" # 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 f5f38947..2ea667b0 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.0" +__version__ = "2.4.1" __all__ = [ "init", diff --git a/pyproject.toml b/pyproject.toml index 37eafae4..a57a91c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,7 @@ packages = [ [tool.poetry] name = "fastapi-jsonapi" -version = "2.4.0" +version = "2.4.1" description = "FastAPI extension to create REST web api according to JSON:API specification" authors = [ "Aleksei Nekrasov ",