From ee5a17503afcd7d9baf4ff90bd092113e7432d42 Mon Sep 17 00:00:00 2001 From: Dmitry Pershin Date: Sun, 8 Dec 2024 18:26:48 +0500 Subject: [PATCH] bump version 1.11.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 dc9f4c2..d58bdbd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +1.11.0 (2024-12-08) +------------------ + +- added exclude_param argument to be able to exclude a json-rpc parameter from validation and schema extraction. + + 1.10.1 (2024-11-13) ------------------ diff --git a/pjrpc/__about__.py b/pjrpc/__about__.py index eda4339..021126c 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.10.1' +__version__ = '1.11.0' __author__ = 'Dmitry Pershin' __email__ = 'dapper1291@gmail.com' diff --git a/pyproject.toml b/pyproject.toml index 8a38945..42b00b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pjrpc" -version = "1.10.1" +version = "1.11.0" description = "Extensible JSON-RPC library" authors = ["Dmitry Pershin "] license = "Unlicense"