diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0377bed..6046182 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,14 @@ Changelog ========= +1.6.0 (2022-07-05) +------------------ + +- JSON-RPC client requests retry support added - aio-pika integration and backend updated for aio-pika 8.0 +- type aliases for middlewares added +- httpx minimal version updated due to found vulnerability + 1.5.0 (2022-05-22) ------------------ diff --git a/pjrpc/__about__.py b/pjrpc/__about__.py index 8a2a4ae..2805763 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.5.0' +__version__ = '1.6.0' __author__ = 'Dmitry Pershin' __email__ = 'dapper91@mail.ru' diff --git a/pyproject.toml b/pyproject.toml index 071ad6c..aba2b6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pjrpc" -version = "1.5.0" +version = "1.6.0" description = "Extensible JSON-RPC library" authors = ["Dmitry Pershin "] license = "Unlicense" @@ -65,7 +65,7 @@ openapi-ui-bundles = ['openapi-ui-bundles'] pydantic = ['pydantic'] requests = ['requests'] starlette = ['starlette', 'aiofiles'] -test = ['aiohttp', 'httpx', 'requests', 'docstring-parser', 'flask', 'jsonschema', 'openapi-ui-bundles', 'pydantic', 'werkzeug'] +test = ['docstring-parser', 'flask', 'jsonschema', 'openapi-ui-bundles', 'pydantic', 'werkzeug'] werkzeug = ['werkzeug'] docgen = ['sphinx', 'aiohttp', 'aio-pika', 'flask', 'jsonschema', 'pydantic', 'requests', 'kombu']