Skip to content

Commit

Permalink
Bump version & copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
tcalmant committed Feb 19, 2022
1 parent 3980c17 commit 8d359e9
Show file tree
Hide file tree
Showing 12 changed files with 57 additions and 45 deletions.
14 changes: 13 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@
Release Notes
#############

0.4.3.1
0.4.3.2
=======

:Release Date: 2022-02-19

* Reordered ``PooledJSONRPCServer`` inheritance definition
(`#55 <https://github.com/tcalmant/jsonrpclib/issues/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
Expand Down
2 changes: 1 addition & 1 deletion docs/license.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions jsonrpclib/SimpleJSONRPCServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions jsonrpclib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions jsonrpclib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions jsonrpclib/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions jsonrpclib/jsonclass.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions jsonrpclib/jsonlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions jsonrpclib/jsonrpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions jsonrpclib/threadpool.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions jsonrpclib/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down Expand Up @@ -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",
],
)

0 comments on commit 8d359e9

Please sign in to comment.