Skip to content

Commit e3caa40

Browse files
committedJun 14, 2024
Bump to version 0.4.3.3
1 parent c5b53fa commit e3caa40

11 files changed

+43
-41
lines changed
 

‎docs/license.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ File Header
1010

1111
This snippet is added to the module-level documentation::
1212

13-
Copyright 2022 Thomas Calmant
13+
Copyright 2024 Thomas Calmant
1414

1515
Licensed under the Apache License, Version 2.0 (the "License");
1616
you may not use this file except in compliance with the License.

‎jsonrpclib/SimpleJSONRPCServer.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
CGI request handler.
66
77
:authors: Josh Marshall, Thomas Calmant
8-
:copyright: Copyright 2022, Thomas Calmant
8+
:copyright: Copyright 2024, Thomas Calmant
99
:license: Apache License 2.0
10-
:version: 0.4.3.2
10+
:version: 0.4.3.3
1111
1212
..
1313
14-
Copyright 2022 Thomas Calmant
14+
Copyright 2024 Thomas Calmant
1515
1616
Licensed under the Apache License, Version 2.0 (the "License");
1717
you may not use this file except in compliance with the License.
@@ -83,7 +83,7 @@
8383
# ------------------------------------------------------------------------------
8484

8585
# Module version
86-
__version_info__ = (0, 4, 3, 2)
86+
__version_info__ = (0, 4, 3, 3)
8787
__version__ = ".".join(str(x) for x in __version_info__)
8888

8989
# Documentation strings format

‎jsonrpclib/__init__.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
Aliases to ease access to jsonrpclib classes
55
66
:authors: Josh Marshall, Thomas Calmant
7-
:copyright: Copyright 2022, Thomas Calmant
7+
:copyright: Copyright 2024, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.2
9+
:version: 0.4.3.3
1010
1111
..
1212
13-
Copyright 2022 Thomas Calmant
13+
Copyright 2024 Thomas Calmant
1414
1515
Licensed under the Apache License, Version 2.0 (the "License");
1616
you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@
4343

4444

4545
# Module version
46-
__version_info__ = (0, 4, 3, 2)
46+
__version_info__ = (0, 4, 3, 3)
4747
__version__ = ".".join(str(x) for x in __version_info__)
4848

4949
# Documentation strings format

‎jsonrpclib/config.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"""
44
The configuration module.
55
6-
:copyright: Copyright 2022, Thomas Calmant
6+
:copyright: Copyright 2024, Thomas Calmant
77
:license: Apache License 2.0
8-
:version: 0.4.3.2
8+
:version: 0.4.3.3
99
1010
..
1111
12-
Copyright 2022 Thomas Calmant
12+
Copyright 2024 Thomas Calmant
1313
1414
Licensed under the Apache License, Version 2.0 (the "License");
1515
you may not use this file except in compliance with the License.
@@ -29,7 +29,7 @@
2929
# ------------------------------------------------------------------------------
3030

3131
# Module version
32-
__version_info__ = (0, 4, 3, 2)
32+
__version_info__ = (0, 4, 3, 3)
3333
__version__ = ".".join(str(x) for x in __version_info__)
3434

3535
# Documentation strings format

‎jsonrpclib/history.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
The history module.
55
66
:authors: Josh Marshall, Thomas Calmant
7-
:copyright: Copyright 2022, Thomas Calmant
7+
:copyright: Copyright 2024, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.2
9+
:version: 0.4.3.3
1010
1111
..
1212
13-
Copyright 2022 Thomas Calmant
13+
Copyright 2024 Thomas Calmant
1414
1515
Licensed under the Apache License, Version 2.0 (the "License");
1616
you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@
2626
"""
2727

2828
# Module version
29-
__version_info__ = (0, 4, 3, 2)
29+
__version_info__ = (0, 4, 3, 3)
3030
__version__ = ".".join(str(x) for x in __version_info__)
3131

3232
# Documentation strings format

‎jsonrpclib/jsonclass.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
The serialization module
55
66
:authors: Josh Marshall, Thomas Calmant
7-
:copyright: Copyright 2022, Thomas Calmant
7+
:copyright: Copyright 2024, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.2
9+
:version: 0.4.3.3
1010
1111
..
1212
13-
Copyright 2022 Thomas Calmant
13+
Copyright 2024 Thomas Calmant
1414
1515
Licensed under the Apache License, Version 2.0 (the "License");
1616
you may not use this file except in compliance with the License.
@@ -36,7 +36,7 @@
3636
# ------------------------------------------------------------------------------
3737

3838
# Module version
39-
__version_info__ = (0, 4, 3, 2)
39+
__version_info__ = (0, 4, 3, 3)
4040
__version__ = ".".join(str(x) for x in __version_info__)
4141

4242
# Documentation strings format

‎jsonrpclib/jsonlib.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
provides a single interface for all
66
77
:authors: Thomas Calmant
8-
:copyright: Copyright 2022, Thomas Calmant
8+
:copyright: Copyright 2024, Thomas Calmant
99
:license: Apache License 2.0
10-
:version: 0.4.3.2
10+
:version: 0.4.3.3
1111
1212
..
1313
14-
Copyright 2022 Thomas Calmant
14+
Copyright 2024 Thomas Calmant
1515
1616
Licensed under the Apache License, Version 2.0 (the "License");
1717
you may not use this file except in compliance with the License.
@@ -33,7 +33,7 @@
3333
# ------------------------------------------------------------------------------
3434

3535
# Module version
36-
__version_info__ = (0, 4, 3, 2)
36+
__version_info__ = (0, 4, 3, 3)
3737
__version__ = ".".join(str(x) for x in __version_info__)
3838

3939
# Documentation strings format

‎jsonrpclib/jsonrpc.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@
3636
See https://github.com/tcalmant/jsonrpclib for more info.
3737
3838
:authors: Josh Marshall, Thomas Calmant
39-
:copyright: Copyright 2022, Thomas Calmant
39+
:copyright: Copyright 2024, Thomas Calmant
4040
:license: Apache License 2.0
41-
:version: 0.4.3.2
41+
:version: 0.4.3.3
4242
4343
..
4444
45-
Copyright 2022 Thomas Calmant
45+
Copyright 2024 Thomas Calmant
4646
4747
Licensed under the Apache License, Version 2.0 (the "License");
4848
you may not use this file except in compliance with the License.
@@ -100,7 +100,7 @@
100100
# ------------------------------------------------------------------------------
101101

102102
# Module version
103-
__version_info__ = (0, 4, 3, 2)
103+
__version_info__ = (0, 4, 3, 3)
104104
__version__ = ".".join(str(x) for x in __version_info__)
105105

106106
# Documentation strings format

‎jsonrpclib/threadpool.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
Cached thread pool, inspired from Pelix/iPOPO Thread Pool
55
66
:author: Thomas Calmant
7-
:copyright: Copyright 2022, Thomas Calmant
7+
:copyright: Copyright 2024, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.2
9+
:version: 0.4.3.3
1010
1111
..
1212
13-
Copyright 2022 Thomas Calmant
13+
Copyright 2024 Thomas Calmant
1414
1515
Licensed under the Apache License, Version 2.0 (the "License");
1616
you may not use this file except in compliance with the License.
@@ -39,7 +39,7 @@
3939
# ------------------------------------------------------------------------------
4040

4141
# Module version
42-
__version_info__ = (0, 4, 3, 2)
42+
__version_info__ = (0, 4, 3, 3)
4343
__version__ = ".".join(str(x) for x in __version_info__)
4444

4545
# Documentation strings format

‎jsonrpclib/utils.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
Utility methods, for compatibility between Python version
55
66
:author: Thomas Calmant
7-
:copyright: Copyright 2022, Thomas Calmant
7+
:copyright: Copyright 2024, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.2
9+
:version: 0.4.3.3
1010
1111
..
1212
13-
Copyright 2022 Thomas Calmant
13+
Copyright 2024 Thomas Calmant
1414
1515
Licensed under the Apache License, Version 2.0 (the "License");
1616
you may not use this file except in compliance with the License.
@@ -30,7 +30,7 @@
3030
# ------------------------------------------------------------------------------
3131

3232
# Module version
33-
__version_info__ = (0, 4, 3, 2)
33+
__version_info__ = (0, 4, 3, 3)
3434
__version__ = ".".join(str(x) for x in __version_info__)
3535

3636
# Documentation strings format

‎setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
Installation script
55
66
:authors: Josh Marshall, Thomas Calmant
7-
:copyright: Copyright 2022, Thomas Calmant
7+
:copyright: Copyright 2024, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.2
9+
:version: 0.4.3.3
1010
1111
..
1212
13-
Copyright 2022 Thomas Calmant
13+
Copyright 2024 Thomas Calmant
1414
1515
Licensed under the Apache License, Version 2.0 (the "License");
1616
you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@
2626
"""
2727

2828
# Module version
29-
__version_info__ = (0, 4, 3, 2)
29+
__version_info__ = (0, 4, 3, 3)
3030
__version__ = ".".join(str(x) for x in __version_info__)
3131

3232
# Documentation strings format
@@ -72,5 +72,7 @@
7272
"Programming Language :: Python :: 3.8",
7373
"Programming Language :: Python :: 3.9",
7474
"Programming Language :: Python :: 3.10",
75+
"Programming Language :: Python :: 3.11",
76+
"Programming Language :: Python :: 3.12",
7577
],
7678
)

0 commit comments

Comments
 (0)
Please sign in to comment.