From 5b23343523e935839eb483820d5b995268cb077f Mon Sep 17 00:00:00 2001 From: Dmitry Pershin Date: Tue, 26 Sep 2023 20:56:21 +0500 Subject: [PATCH] bump version 1.8.0. --- CHANGELOG.rst | 6 ++++++ pjrpc/__about__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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"