Skip to content

Commit

Permalink
Bump to version 0.4.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tcalmant committed Jun 14, 2024
1 parent c5b53fa commit e3caa40
Show file tree
Hide file tree
Showing 11 changed files with 43 additions and 41 deletions.
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 2022 Thomas Calmant
Copyright 2024 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 2022, Thomas Calmant
:copyright: Copyright 2024, Thomas Calmant
:license: Apache License 2.0
:version: 0.4.3.2
:version: 0.4.3.3
..
Copyright 2022 Thomas Calmant
Copyright 2024 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, 2)
__version_info__ = (0, 4, 3, 3)
__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 2022, Thomas Calmant
:copyright: Copyright 2024, Thomas Calmant
:license: Apache License 2.0
:version: 0.4.3.2
:version: 0.4.3.3
..
Copyright 2022 Thomas Calmant
Copyright 2024 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, 2)
__version_info__ = (0, 4, 3, 3)
__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 2022, Thomas Calmant
:copyright: Copyright 2024, Thomas Calmant
:license: Apache License 2.0
:version: 0.4.3.2
:version: 0.4.3.3
..
Copyright 2022 Thomas Calmant
Copyright 2024 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, 2)
__version_info__ = (0, 4, 3, 3)
__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 2022, Thomas Calmant
:copyright: Copyright 2024, Thomas Calmant
:license: Apache License 2.0
:version: 0.4.3.2
:version: 0.4.3.3
..
Copyright 2022 Thomas Calmant
Copyright 2024 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, 2)
__version_info__ = (0, 4, 3, 3)
__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 2022, Thomas Calmant
:copyright: Copyright 2024, Thomas Calmant
:license: Apache License 2.0
:version: 0.4.3.2
:version: 0.4.3.3
..
Copyright 2022 Thomas Calmant
Copyright 2024 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, 2)
__version_info__ = (0, 4, 3, 3)
__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 2022, Thomas Calmant
:copyright: Copyright 2024, Thomas Calmant
:license: Apache License 2.0
:version: 0.4.3.2
:version: 0.4.3.3
..
Copyright 2022 Thomas Calmant
Copyright 2024 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, 2)
__version_info__ = (0, 4, 3, 3)
__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 2022, Thomas Calmant
:copyright: Copyright 2024, Thomas Calmant
:license: Apache License 2.0
:version: 0.4.3.2
:version: 0.4.3.3
..
Copyright 2022 Thomas Calmant
Copyright 2024 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, 2)
__version_info__ = (0, 4, 3, 3)
__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 2022, Thomas Calmant
:copyright: Copyright 2024, Thomas Calmant
:license: Apache License 2.0
:version: 0.4.3.2
:version: 0.4.3.3
..
Copyright 2022 Thomas Calmant
Copyright 2024 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, 2)
__version_info__ = (0, 4, 3, 3)
__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 2022, Thomas Calmant
:copyright: Copyright 2024, Thomas Calmant
:license: Apache License 2.0
:version: 0.4.3.2
:version: 0.4.3.3
..
Copyright 2022 Thomas Calmant
Copyright 2024 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, 2)
__version_info__ = (0, 4, 3, 3)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
10 changes: 6 additions & 4 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 2022, Thomas Calmant
:copyright: Copyright 2024, Thomas Calmant
:license: Apache License 2.0
:version: 0.4.3.2
:version: 0.4.3.3
..
Copyright 2022 Thomas Calmant
Copyright 2024 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, 2)
__version_info__ = (0, 4, 3, 3)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down Expand Up @@ -72,5 +72,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)

0 comments on commit e3caa40

Please sign in to comment.