diff --git a/docs/changelog.rst b/docs/changelog.rst index 9756c356..d048bbac 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,23 @@ Changelog ######### +**2.5.0** +********* + +Fix relationships filtering, refactor alchemy helpers +===================================================== + +* Fix filter by relationships by `@CosmoV`_ in `#52 `_ +* Add Codecov by `@mahenzon`_ in `#72 `_ +* Set RoutersJSONAPI class on AtomicViewHandler by `@mahenzon`_ in `#7b2557f `_ + +Authors +""""""" + +* `@CosmoV`_ +* `@mahenzon`_ + + **2.4.2** ********* @@ -14,6 +31,7 @@ Authors * `@mahenzon`_ + **2.4.1** ********* diff --git a/docs/conf.py b/docs/conf.py index a4420a16..9bce1286 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "2.4" +version = "2.5" # The full version, including alpha/beta/rc tags. -release = "2.4.2" +release = "2.5.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 a67959a3..5d198f45 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.2" +__version__ = "2.5.0" __all__ = [ "init", diff --git a/pyproject.toml b/pyproject.toml index 66d39f05..1d59ef00 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,7 @@ packages = [ [tool.poetry] name = "fastapi-jsonapi" -version = "2.4.2" +version = "2.5.0" description = "FastAPI extension to create REST web api according to JSON:API specification" authors = [ "Aleksei Nekrasov ",