diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 827af0f..d72a168 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +1.9.0 (2024-04-22) +------------------ + +- aio-pika custom response exchange support added. + + 1.8.3 (2023-12-15) ------------------ diff --git a/pjrpc/__about__.py b/pjrpc/__about__.py index 90909f8..99f6ad7 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.8.3' +__version__ = '1.9.0' __author__ = 'Dmitry Pershin' __email__ = 'dapper1291@gmail.com' diff --git a/pyproject.toml b/pyproject.toml index e1c751c..9fe673e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pjrpc" -version = "1.8.3" +version = "1.9.0" description = "Extensible JSON-RPC library" authors = ["Dmitry Pershin "] license = "Unlicense"