From 33b6416a847ead2380a9edec1a12508930126d17 Mon Sep 17 00:00:00 2001 From: Dmitry Pershin Date: Mon, 22 Apr 2024 00:28:55 +0500 Subject: [PATCH] bump version 1.9.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 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"