Skip to content

Commit fa316cc

Browse files
committed
Version bumped to 0.4.1 + Copyright update
1 parent 3ef793e commit fa316cc

10 files changed

+37
-37
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 2019 Thomas Calmant
13+
Copyright 2020 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 2019, Thomas Calmant
8+
:copyright: Copyright 2020, Thomas Calmant
99
:license: Apache License 2.0
10-
:version: 0.4.0
10+
:version: 0.4.1
1111
1212
..
1313
14-
Copyright 2019 Thomas Calmant
14+
Copyright 2020 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.
@@ -81,7 +81,7 @@
8181
# ------------------------------------------------------------------------------
8282

8383
# Module version
84-
__version_info__ = (0, 4, 0)
84+
__version_info__ = (0, 4, 1)
8585
__version__ = ".".join(str(x) for x in __version_info__)
8686

8787
# 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 2019, Thomas Calmant
7+
:copyright: Copyright 2020, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.0
9+
:version: 0.4.1
1010
1111
..
1212
13-
Copyright 2019 Thomas Calmant
13+
Copyright 2020 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.
@@ -37,7 +37,7 @@
3737

3838

3939
# Module version
40-
__version_info__ = (0, 4, 0)
40+
__version_info__ = (0, 4, 1)
4141
__version__ = ".".join(str(x) for x in __version_info__)
4242

4343
# 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 2019, Thomas Calmant
6+
:copyright: Copyright 2020, Thomas Calmant
77
:license: Apache License 2.0
8-
:version: 0.4.0
8+
:version: 0.4.1
99
1010
..
1111
12-
Copyright 2019 Thomas Calmant
12+
Copyright 2020 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, 0)
32+
__version_info__ = (0, 4, 1)
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 2019, Thomas Calmant
7+
:copyright: Copyright 2020, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.0
9+
:version: 0.4.1
1010
1111
..
1212
13-
Copyright 2019 Thomas Calmant
13+
Copyright 2020 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, 0)
29+
__version_info__ = (0, 4, 1)
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 2019, Thomas Calmant
7+
:copyright: Copyright 2020, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.0
9+
:version: 0.4.1
1010
1111
..
1212
13-
Copyright 2019 Thomas Calmant
13+
Copyright 2020 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, 0)
39+
__version_info__ = (0, 4, 1)
4040
__version__ = ".".join(str(x) for x in __version_info__)
4141

4242
# 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 2019, Thomas Calmant
39+
:copyright: Copyright 2020, Thomas Calmant
4040
:license: Apache License 2.0
41-
:version: 0.4.0
41+
:version: 0.4.1
4242
4343
..
4444
45-
Copyright 2019 Thomas Calmant
45+
Copyright 2020 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, 0)
103+
__version_info__ = (0, 4, 1)
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 2019, Thomas Calmant
7+
:copyright: Copyright 2020, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.0
9+
:version: 0.4.1
1010
1111
..
1212
13-
Copyright 2019 Thomas Calmant
13+
Copyright 2020 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.
@@ -41,7 +41,7 @@
4141
# ------------------------------------------------------------------------------
4242

4343
# Module version
44-
__version_info__ = (0, 4, 0)
44+
__version_info__ = (0, 4, 1)
4545
__version__ = ".".join(str(x) for x in __version_info__)
4646

4747
# 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 2019, Thomas Calmant
7+
:copyright: Copyright 2020, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.0
9+
:version: 0.4.1
1010
1111
..
1212
13-
Copyright 2019 Thomas Calmant
13+
Copyright 2020 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, 0)
33+
__version_info__ = (0, 4, 1)
3434
__version__ = ".".join(str(x) for x in __version_info__)
3535

3636
# Documentation strings format

setup.py

+4-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 2019, Thomas Calmant
7+
:copyright: Copyright 2020, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.0
9+
:version: 0.4.1
1010
1111
..
1212
13-
Copyright 2019 Thomas Calmant
13+
Copyright 2020 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, 0)
29+
__version_info__ = (0, 4, 1)
3030
__version__ = ".".join(str(x) for x in __version_info__)
3131

3232
# Documentation strings format

0 commit comments

Comments
 (0)