Skip to content

Commit 8d359e9

Browse files
committed
Bump version & copyright
1 parent 3980c17 commit 8d359e9

12 files changed

+57
-45
lines changed

docs/changelog.rst

+13-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,19 @@
33
Release Notes
44
#############
55

6-
0.4.3.1
6+
0.4.3.2
7+
=======
8+
9+
:Release Date: 2022-02-19
10+
11+
* Reordered ``PooledJSONRPCServer`` inheritance definition
12+
(`#55 <https://github.com/tcalmant/jsonrpclib/issues/55>`)
13+
* Migration of Continuous Integration:
14+
* Use PyTest instead of Nose
15+
* Run CI with GitHub Actions instead of Travis-CI
16+
17+
18+
0.4.3.2
719
=======
820

921
:Release Date: 2021-09-28

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 2021 Thomas Calmant
13+
Copyright 2022 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 2021, Thomas Calmant
8+
:copyright: Copyright 2022, Thomas Calmant
99
:license: Apache License 2.0
10-
:version: 0.4.3.1
10+
:version: 0.4.3.2
1111
1212
..
1313
14-
Copyright 2021 Thomas Calmant
14+
Copyright 2022 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, 1)
86+
__version_info__ = (0, 4, 3, 2)
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 2021, Thomas Calmant
7+
:copyright: Copyright 2022, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.1
9+
:version: 0.4.3.2
1010
1111
..
1212
13-
Copyright 2021 Thomas Calmant
13+
Copyright 2022 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, 1)
46+
__version_info__ = (0, 4, 3, 2)
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 2021, Thomas Calmant
6+
:copyright: Copyright 2022, Thomas Calmant
77
:license: Apache License 2.0
8-
:version: 0.4.3.1
8+
:version: 0.4.3.2
99
1010
..
1111
12-
Copyright 2021 Thomas Calmant
12+
Copyright 2022 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, 1)
32+
__version_info__ = (0, 4, 3, 2)
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 2021, Thomas Calmant
7+
:copyright: Copyright 2022, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.1
9+
:version: 0.4.3.2
1010
1111
..
1212
13-
Copyright 2021 Thomas Calmant
13+
Copyright 2022 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, 1)
29+
__version_info__ = (0, 4, 3, 2)
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 2021, Thomas Calmant
7+
:copyright: Copyright 2022, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.1
9+
:version: 0.4.3.2
1010
1111
..
1212
13-
Copyright 2021 Thomas Calmant
13+
Copyright 2022 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, 1)
39+
__version_info__ = (0, 4, 3, 2)
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 2021, Thomas Calmant
8+
:copyright: Copyright 2022, Thomas Calmant
99
:license: Apache License 2.0
10-
:version: 0.4.3.1
10+
:version: 0.4.3.2
1111
1212
..
1313
14-
Copyright 2021 Thomas Calmant
14+
Copyright 2022 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, 1)
36+
__version_info__ = (0, 4, 3, 2)
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 2021, Thomas Calmant
39+
:copyright: Copyright 2022, Thomas Calmant
4040
:license: Apache License 2.0
41-
:version: 0.4.3.1
41+
:version: 0.4.3.2
4242
4343
..
4444
45-
Copyright 2021 Thomas Calmant
45+
Copyright 2022 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, 1)
103+
__version_info__ = (0, 4, 3, 2)
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 2021, Thomas Calmant
7+
:copyright: Copyright 2022, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.1
9+
:version: 0.4.3.2
1010
1111
..
1212
13-
Copyright 2021 Thomas Calmant
13+
Copyright 2022 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, 1)
42+
__version_info__ = (0, 4, 3, 2)
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 2021, Thomas Calmant
7+
:copyright: Copyright 2022, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.4.3.1
9+
:version: 0.4.3.2
1010
1111
..
1212
13-
Copyright 2021 Thomas Calmant
13+
Copyright 2022 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, 1)
33+
__version_info__ = (0, 4, 3, 2)
3434
__version__ = ".".join(str(x) for x in __version_info__)
3535

3636
# Documentation strings format

setup.py

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

3232
# Documentation strings format
@@ -67,10 +67,10 @@
6767
"Operating System :: OS Independent",
6868
"Programming Language :: Python :: 2.7",
6969
"Programming Language :: Python :: 3",
70-
"Programming Language :: Python :: 3.3",
71-
"Programming Language :: Python :: 3.4",
72-
"Programming Language :: Python :: 3.5",
7370
"Programming Language :: Python :: 3.6",
7471
"Programming Language :: Python :: 3.7",
72+
"Programming Language :: Python :: 3.8",
73+
"Programming Language :: Python :: 3.9",
74+
"Programming Language :: Python :: 3.10",
7575
],
7676
)

0 commit comments

Comments
 (0)