From 8d359e99dd8f40e3fd2b8f5551a7feb96ee07713 Mon Sep 17 00:00:00 2001 From: Thomas Calmant Date: Sat, 19 Feb 2022 17:45:19 +0100 Subject: [PATCH] Bump version & copyright --- docs/changelog.rst | 14 +++++++++++++- docs/license.rst | 2 +- jsonrpclib/SimpleJSONRPCServer.py | 8 ++++---- jsonrpclib/__init__.py | 8 ++++---- jsonrpclib/config.py | 8 ++++---- jsonrpclib/history.py | 8 ++++---- jsonrpclib/jsonclass.py | 8 ++++---- jsonrpclib/jsonlib.py | 8 ++++---- jsonrpclib/jsonrpc.py | 8 ++++---- jsonrpclib/threadpool.py | 8 ++++---- jsonrpclib/utils.py | 8 ++++---- setup.py | 14 +++++++------- 12 files changed, 57 insertions(+), 45 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 932993f..64f36d8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,7 +3,19 @@ Release Notes ############# -0.4.3.1 +0.4.3.2 +======= + +:Release Date: 2022-02-19 + +* Reordered ``PooledJSONRPCServer`` inheritance definition + (`#55 `) +* Migration of Continuous Integration: + * Use PyTest instead of Nose + * Run CI with GitHub Actions instead of Travis-CI + + +0.4.3.2 ======= :Release Date: 2021-09-28 diff --git a/docs/license.rst b/docs/license.rst index 93bd85a..344d72a 100644 --- a/docs/license.rst +++ b/docs/license.rst @@ -10,7 +10,7 @@ File Header This snippet is added to the module-level documentation:: - Copyright 2021 Thomas Calmant + Copyright 2022 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/jsonrpclib/SimpleJSONRPCServer.py b/jsonrpclib/SimpleJSONRPCServer.py index f549751..48023fc 100644 --- a/jsonrpclib/SimpleJSONRPCServer.py +++ b/jsonrpclib/SimpleJSONRPCServer.py @@ -5,13 +5,13 @@ CGI request handler. :authors: Josh Marshall, Thomas Calmant -:copyright: Copyright 2021, Thomas Calmant +:copyright: Copyright 2022, Thomas Calmant :license: Apache License 2.0 -:version: 0.4.3.1 +:version: 0.4.3.2 .. - Copyright 2021 Thomas Calmant + Copyright 2022 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -83,7 +83,7 @@ # ------------------------------------------------------------------------------ # Module version -__version_info__ = (0, 4, 3, 1) +__version_info__ = (0, 4, 3, 2) __version__ = ".".join(str(x) for x in __version_info__) # Documentation strings format diff --git a/jsonrpclib/__init__.py b/jsonrpclib/__init__.py index 03334a4..7c0a287 100644 --- a/jsonrpclib/__init__.py +++ b/jsonrpclib/__init__.py @@ -4,13 +4,13 @@ Aliases to ease access to jsonrpclib classes :authors: Josh Marshall, Thomas Calmant -:copyright: Copyright 2021, Thomas Calmant +:copyright: Copyright 2022, Thomas Calmant :license: Apache License 2.0 -:version: 0.4.3.1 +:version: 0.4.3.2 .. - Copyright 2021 Thomas Calmant + Copyright 2022 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ # Module version -__version_info__ = (0, 4, 3, 1) +__version_info__ = (0, 4, 3, 2) __version__ = ".".join(str(x) for x in __version_info__) # Documentation strings format diff --git a/jsonrpclib/config.py b/jsonrpclib/config.py index aa36c53..b65eb93 100644 --- a/jsonrpclib/config.py +++ b/jsonrpclib/config.py @@ -3,13 +3,13 @@ """ The configuration module. -:copyright: Copyright 2021, Thomas Calmant +:copyright: Copyright 2022, Thomas Calmant :license: Apache License 2.0 -:version: 0.4.3.1 +:version: 0.4.3.2 .. - Copyright 2021 Thomas Calmant + Copyright 2022 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -29,7 +29,7 @@ # ------------------------------------------------------------------------------ # Module version -__version_info__ = (0, 4, 3, 1) +__version_info__ = (0, 4, 3, 2) __version__ = ".".join(str(x) for x in __version_info__) # Documentation strings format diff --git a/jsonrpclib/history.py b/jsonrpclib/history.py index 1156e69..24a4fc4 100644 --- a/jsonrpclib/history.py +++ b/jsonrpclib/history.py @@ -4,13 +4,13 @@ The history module. :authors: Josh Marshall, Thomas Calmant -:copyright: Copyright 2021, Thomas Calmant +:copyright: Copyright 2022, Thomas Calmant :license: Apache License 2.0 -:version: 0.4.3.1 +:version: 0.4.3.2 .. - Copyright 2021 Thomas Calmant + Copyright 2022 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -26,7 +26,7 @@ """ # Module version -__version_info__ = (0, 4, 3, 1) +__version_info__ = (0, 4, 3, 2) __version__ = ".".join(str(x) for x in __version_info__) # Documentation strings format diff --git a/jsonrpclib/jsonclass.py b/jsonrpclib/jsonclass.py index 484f7b5..87daf4f 100644 --- a/jsonrpclib/jsonclass.py +++ b/jsonrpclib/jsonclass.py @@ -4,13 +4,13 @@ The serialization module :authors: Josh Marshall, Thomas Calmant -:copyright: Copyright 2021, Thomas Calmant +:copyright: Copyright 2022, Thomas Calmant :license: Apache License 2.0 -:version: 0.4.3.1 +:version: 0.4.3.2 .. - Copyright 2021 Thomas Calmant + Copyright 2022 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -36,7 +36,7 @@ # ------------------------------------------------------------------------------ # Module version -__version_info__ = (0, 4, 3, 1) +__version_info__ = (0, 4, 3, 2) __version__ = ".".join(str(x) for x in __version_info__) # Documentation strings format diff --git a/jsonrpclib/jsonlib.py b/jsonrpclib/jsonlib.py index 413bf3c..83e8544 100644 --- a/jsonrpclib/jsonlib.py +++ b/jsonrpclib/jsonlib.py @@ -5,13 +5,13 @@ provides a single interface for all :authors: Thomas Calmant -:copyright: Copyright 2021, Thomas Calmant +:copyright: Copyright 2022, Thomas Calmant :license: Apache License 2.0 -:version: 0.4.3.1 +:version: 0.4.3.2 .. - Copyright 2021 Thomas Calmant + Copyright 2022 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -33,7 +33,7 @@ # ------------------------------------------------------------------------------ # Module version -__version_info__ = (0, 4, 3, 1) +__version_info__ = (0, 4, 3, 2) __version__ = ".".join(str(x) for x in __version_info__) # Documentation strings format diff --git a/jsonrpclib/jsonrpc.py b/jsonrpclib/jsonrpc.py index 36aae62..bd8de1a 100644 --- a/jsonrpclib/jsonrpc.py +++ b/jsonrpclib/jsonrpc.py @@ -36,13 +36,13 @@ See https://github.com/tcalmant/jsonrpclib for more info. :authors: Josh Marshall, Thomas Calmant -:copyright: Copyright 2021, Thomas Calmant +:copyright: Copyright 2022, Thomas Calmant :license: Apache License 2.0 -:version: 0.4.3.1 +:version: 0.4.3.2 .. - Copyright 2021 Thomas Calmant + Copyright 2022 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -100,7 +100,7 @@ # ------------------------------------------------------------------------------ # Module version -__version_info__ = (0, 4, 3, 1) +__version_info__ = (0, 4, 3, 2) __version__ = ".".join(str(x) for x in __version_info__) # Documentation strings format diff --git a/jsonrpclib/threadpool.py b/jsonrpclib/threadpool.py index 7a601b7..6b047bc 100644 --- a/jsonrpclib/threadpool.py +++ b/jsonrpclib/threadpool.py @@ -4,13 +4,13 @@ Cached thread pool, inspired from Pelix/iPOPO Thread Pool :author: Thomas Calmant -:copyright: Copyright 2021, Thomas Calmant +:copyright: Copyright 2022, Thomas Calmant :license: Apache License 2.0 -:version: 0.4.3.1 +:version: 0.4.3.2 .. - Copyright 2021 Thomas Calmant + Copyright 2022 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -39,7 +39,7 @@ # ------------------------------------------------------------------------------ # Module version -__version_info__ = (0, 4, 3, 1) +__version_info__ = (0, 4, 3, 2) __version__ = ".".join(str(x) for x in __version_info__) # Documentation strings format diff --git a/jsonrpclib/utils.py b/jsonrpclib/utils.py index f1b747c..d37b9e7 100644 --- a/jsonrpclib/utils.py +++ b/jsonrpclib/utils.py @@ -4,13 +4,13 @@ Utility methods, for compatibility between Python version :author: Thomas Calmant -:copyright: Copyright 2021, Thomas Calmant +:copyright: Copyright 2022, Thomas Calmant :license: Apache License 2.0 -:version: 0.4.3.1 +:version: 0.4.3.2 .. - Copyright 2021 Thomas Calmant + Copyright 2022 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -30,7 +30,7 @@ # ------------------------------------------------------------------------------ # Module version -__version_info__ = (0, 4, 3, 1) +__version_info__ = (0, 4, 3, 2) __version__ = ".".join(str(x) for x in __version_info__) # Documentation strings format diff --git a/setup.py b/setup.py index 80f454a..78ca509 100755 --- a/setup.py +++ b/setup.py @@ -4,13 +4,13 @@ Installation script :authors: Josh Marshall, Thomas Calmant -:copyright: Copyright 2021, Thomas Calmant +:copyright: Copyright 2022, Thomas Calmant :license: Apache License 2.0 -:version: 0.4.3.1 +:version: 0.4.3.2 .. - Copyright 2021 Thomas Calmant + Copyright 2022 Thomas Calmant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -26,7 +26,7 @@ """ # Module version -__version_info__ = (0, 4, 3, 1) +__version_info__ = (0, 4, 3, 2) __version__ = ".".join(str(x) for x in __version_info__) # Documentation strings format @@ -67,10 +67,10 @@ "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.3", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ], )