Skip to content

Commit a09a578

Browse files
committed
Version bump to 0.4.3.4
1 parent 3d62c44 commit a09a578

11 files changed

+32
-32
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
# -- Project information -----------------------------------------------------
2121

2222
project = "jsonrpclib-pelix"
23-
copyright = "2024, Thomas Calmant"
23+
copyright = "2025, Thomas Calmant"
2424
author = "Thomas Calmant"
2525

2626
# The short X.Y version
2727
version = "0.4"
2828
# The full version, including alpha/beta/rc tags
29-
release = "0.4.3.3"
29+
release = "0.4.3.4"
3030

3131

3232
# -- General configuration ---------------------------------------------------

jsonrpclib/SimpleJSONRPCServer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
CGI request handler.
66
77
:authors: Josh Marshall, Thomas Calmant
8-
:copyright: Copyright 2024, Thomas Calmant
8+
:copyright: Copyright 2025, Thomas Calmant
99
:license: Apache License 2.0
10-
:version: 0.4.3.3
10+
:version: 0.4.3.4
1111
1212
..
1313
@@ -83,7 +83,7 @@
8383
# ------------------------------------------------------------------------------
8484

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

8989
# Documentation strings format

jsonrpclib/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
Aliases to ease access to jsonrpclib classes
55
66
:authors: Josh Marshall, Thomas Calmant
7-
:copyright: Copyright 2024, Thomas Calmant
7+
:copyright: Copyright 2025, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.3
9+
:version: 0.4.3.4
1010
1111
..
1212
@@ -43,7 +43,7 @@
4343

4444

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

4949
# Documentation strings format

jsonrpclib/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
The configuration module.
55
6-
:copyright: Copyright 2024, Thomas Calmant
6+
:copyright: Copyright 2025, Thomas Calmant
77
:license: Apache License 2.0
8-
:version: 0.4.3.3
8+
:version: 0.4.3.4
99
1010
..
1111
@@ -29,7 +29,7 @@
2929
# ------------------------------------------------------------------------------
3030

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

3535
# Documentation strings format

jsonrpclib/history.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
The history module.
55
66
:authors: Josh Marshall, Thomas Calmant
7-
:copyright: Copyright 2024, Thomas Calmant
7+
:copyright: Copyright 2025, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.3
9+
:version: 0.4.3.4
1010
1111
..
1212
@@ -26,7 +26,7 @@
2626
"""
2727

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

3232
# Documentation strings format

jsonrpclib/jsonclass.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
The serialization module
55
66
:authors: Josh Marshall, Thomas Calmant
7-
:copyright: Copyright 2024, Thomas Calmant
7+
:copyright: Copyright 2025, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.3
9+
:version: 0.4.3.4
1010
1111
..
1212
@@ -36,7 +36,7 @@
3636
# ------------------------------------------------------------------------------
3737

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

4242
# Documentation strings format

jsonrpclib/jsonlib.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
provides a single interface for all
66
77
:authors: Thomas Calmant
8-
:copyright: Copyright 2024, Thomas Calmant
8+
:copyright: Copyright 2025, Thomas Calmant
99
:license: Apache License 2.0
10-
:version: 0.4.3.3
10+
:version: 0.4.3.4
1111
1212
..
1313
@@ -33,7 +33,7 @@
3333
# ------------------------------------------------------------------------------
3434

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

3939
# Documentation strings format

jsonrpclib/jsonrpc.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
See https://github.com/tcalmant/jsonrpclib for more info.
3737
3838
:authors: Josh Marshall, Thomas Calmant
39-
:copyright: Copyright 2024, Thomas Calmant
39+
:copyright: Copyright 2025, Thomas Calmant
4040
:license: Apache License 2.0
41-
:version: 0.4.3.3
41+
:version: 0.4.3.4
4242
4343
..
4444
@@ -100,7 +100,7 @@
100100
# ------------------------------------------------------------------------------
101101

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

106106
# Documentation strings format

jsonrpclib/threadpool.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
Cached thread pool, inspired from Pelix/iPOPO Thread Pool
55
66
:author: Thomas Calmant
7-
:copyright: Copyright 2024, Thomas Calmant
7+
:copyright: Copyright 2025, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.3
9+
:version: 0.4.3.4
1010
1111
..
1212
@@ -39,7 +39,7 @@
3939
# ------------------------------------------------------------------------------
4040

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

4545
# Documentation strings format

jsonrpclib/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
Utility methods, for compatibility between Python version
55
66
:author: Thomas Calmant
7-
:copyright: Copyright 2024, Thomas Calmant
7+
:copyright: Copyright 2025, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.3
9+
:version: 0.4.3.4
1010
1111
..
1212
@@ -30,7 +30,7 @@
3030
# ------------------------------------------------------------------------------
3131

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

3636
# Documentation strings format

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
Installation script
55
66
:authors: Josh Marshall, Thomas Calmant
7-
:copyright: Copyright 2024, Thomas Calmant
7+
:copyright: Copyright 2025, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.3
9+
:version: 0.4.3.4
1010
1111
..
1212
@@ -26,7 +26,7 @@
2626
"""
2727

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

3232
# Documentation strings format

0 commit comments

Comments
 (0)