Skip to content

Commit 5ebf0da

Browse files
committed
bump version to 2.2.0, update changelog and authors
1 parent a6ed570 commit 5ebf0da

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

docs/changelog.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@ Changelog
22
#########
33

44

5+
**2.2.0**
6+
*********
7+
8+
Support for pydantic validators
9+
===============================
10+
11+
* Pydantic validators are applied to generated schemas now
12+
13+
Authors
14+
"""""""
15+
16+
* `@CosmoV`_
17+
18+
519
**2.1.0**
620
*********
721

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.1"
67+
version = "2.2"
6868
# The full version, including alpha/beta/rc tags.
69-
release = "2.1.0"
69+
release = "2.2.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.1.0"
11+
__version__ = "2.2.0"
1212

1313
__all__ = [
1414
"init",

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,12 @@ packages = [
7272

7373
[tool.poetry]
7474
name = "fastapi-jsonapi"
75-
version = "2.1.0"
75+
version = "2.2.0"
7676
description = "FastAPI extension to create REST web api according to JSON:API specification"
7777
authors = [
7878
"Aleksei Nekrasov <nekrasov.aleks@mail.ru>",
7979
"Suren Khorenyan <surenkhorenyan@gmail.com>",
80+
"German Bernadskiy <german11235813@gmail.com>",
8081
]
8182
license = "MIT"
8283
readme = "README.md"

0 commit comments

Comments
 (0)