Skip to content

Commit e6224e9

Browse files
authored
Merge pull request #65 from mts-ai/bump-version
bump version to 2.4.0
2 parents 9e78a3b + 0b8e77f commit e6224e9

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

docs/changelog.rst

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,33 @@
11
Changelog
22
#########
33

4+
**2.4.0**
5+
*********
6+
7+
Relationship loading, filtering improvements, fixes
8+
===================================================
9+
10+
* pass request to data layer by `@mahenzon`_ in `#61 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/61>`_
11+
* fix loading multi relationships by `@mahenzon`_ in `#59 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/59>`_
12+
* Fix type cast in filters by `@CosmoV`_ in `#62 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/62>`_
13+
* Fix null value filtering by `@CosmoV`_ in `#60 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/60>`_
14+
* add py.typed by `@mahenzon`_ in `#64 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/64>`_
15+
* 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>`)
16+
17+
Authors
18+
"""""""
19+
20+
* `@CosmoV`_
21+
* `@mahenzon`_
22+
423

524
**2.3.2**
625
*********
726

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

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

1332
Authors
1433
"""""""

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = "2.3"
67+
version = "2.4"
6868
# The full version, including alpha/beta/rc tags.
69-
release = "2.3.2"
69+
release = "2.4.0"
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

fastapi_jsonapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from fastapi_jsonapi.exceptions.json_api import HTTPException
99
from fastapi_jsonapi.querystring import QueryStringManager
1010

11-
__version__ = "2.3.2"
11+
__version__ = "2.4.0"
1212

1313
__all__ = [
1414
"init",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ packages = [
7272

7373
[tool.poetry]
7474
name = "fastapi-jsonapi"
75-
version = "2.3.2"
75+
version = "2.4.0"
7676
description = "FastAPI extension to create REST web api according to JSON:API specification"
7777
authors = [
7878
"Aleksei Nekrasov <nekrasov.aleks@mail.ru>",

0 commit comments

Comments
 (0)