Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/66>`_
* create separate methods for building query for fetching related objects by `@mahenzon`_ in `#67 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/67>`_
* update ruff linter by `@mahenzon`_ in `#69 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/69>`_

Authors
"""""""

* `@mahenzon`_


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

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.4.0"
__version__ = "2.4.1"

__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.4.0"
version = "2.4.1"
description = "FastAPI extension to create REST web api according to JSON:API specification"
authors = [
"Aleksei Nekrasov <nekrasov.aleks@mail.ru>",
Expand Down