diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 68c6f6b..0d91c00 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +1.8.0 (2023-09-26) +------------------ + +- pydantic 2 support added + + 1.7.0 (2023-08-10) ------------------ diff --git a/pjrpc/__about__.py b/pjrpc/__about__.py index 3e20f1d..4615488 100644 --- a/pjrpc/__about__.py +++ b/pjrpc/__about__.py @@ -2,7 +2,7 @@ __description__ = 'Extensible JSON-RPC library' __url__ = 'https://github.com/dapper91/pjrpc' -__version__ = '1.7.0' +__version__ = '1.8.0' __author__ = 'Dmitry Pershin' __email__ = 'dapper1291@gmail.com' diff --git a/pyproject.toml b/pyproject.toml index f5039c4..655fb24 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pjrpc" -version = "1.7.0" +version = "1.8.0" description = "Extensible JSON-RPC library" authors = ["Dmitry Pershin "] license = "Unlicense"