diff --git a/docs/changelog.rst b/docs/changelog.rst index 701f6679..b09c888b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,14 +1,33 @@ Changelog ######### +**2.4.0** +********* + +Relationship loading, filtering improvements, fixes +=================================================== + +* pass request to data layer by `@mahenzon`_ in `#61 `_ +* fix loading multi relationships by `@mahenzon`_ in `#59 `_ +* Fix type cast in filters by `@CosmoV`_ in `#62 `_ +* Fix null value filtering by `@CosmoV`_ in `#60 `_ +* add py.typed by `@mahenzon`_ in `#64 `_ +* limit view methods by `@mahenzon`_ in `#63 `_ - (see :ref:`api example doc `) + +Authors +""""""" + +* `@CosmoV`_ +* `@mahenzon`_ + **2.3.2** ********* Duplicated entities in response fix -======================================= -* fix duplicates in list response `#48 `_ +=================================== +* fix duplicates in list response `#48 `_ Authors """"""" diff --git a/docs/conf.py b/docs/conf.py index 0b79a4a8..0199c975 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "2.3" +version = "2.4" # The full version, including alpha/beta/rc tags. -release = "2.3.2" +release = "2.4.0" # 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 367a3f6f..f5f38947 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.3.2" +__version__ = "2.4.0" __all__ = [ "init", diff --git a/pyproject.toml b/pyproject.toml index a4b07c4f..cdce1fb9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,7 @@ packages = [ [tool.poetry] name = "fastapi-jsonapi" -version = "2.3.2" +version = "2.4.0" description = "FastAPI extension to create REST web api according to JSON:API specification" authors = [ "Aleksei Nekrasov ",