Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mahenzon committed Dec 15, 2023
1 parent 9e78a3b commit 0b8e77f
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
23 changes: 21 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,33 @@
Changelog
#########

**2.4.0**
*********

Relationship loading, filtering improvements, fixes
===================================================

* pass request to data layer by `@mahenzon`_ in `#61 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/61>`_
* fix loading multi relationships by `@mahenzon`_ in `#59 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/59>`_
* Fix type cast in filters by `@CosmoV`_ in `#62 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/62>`_
* Fix null value filtering by `@CosmoV`_ in `#60 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/60>`_
* add py.typed by `@mahenzon`_ in `#64 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/64>`_
* limit view methods by `@mahenzon`_ in `#63 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/63>`_ - (see :ref:`api example doc <api_limited_methods_example>`)

Authors
"""""""

* `@CosmoV`_
* `@mahenzon`_


**2.3.2**
*********

Duplicated entities in response fix
=======================================
* fix duplicates in list response `#48 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/48>`_
===================================

* fix duplicates in list response `#48 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/48>`_

Authors
"""""""
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion fastapi_jsonapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <nekrasov.aleks@mail.ru>",
Expand Down

0 comments on commit 0b8e77f

Please sign in to comment.