Skip to content

Commit a8fac9c

Browse files
committed
Version bump to 0.3.1
1 parent 1b6feb3 commit a8fac9c

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

jsonrpclib/SimpleJSONRPCServer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:authors: Josh Marshall, Thomas Calmant
88
:copyright: Copyright 2017, Thomas Calmant
99
:license: Apache License 2.0
10-
:version: 0.3.0
10+
:version: 0.3.1
1111
1212
..
1313
@@ -69,7 +69,7 @@
6969
# ------------------------------------------------------------------------------
7070

7171
# Module version
72-
__version_info__ = (0, 3, 0)
72+
__version_info__ = (0, 3, 1)
7373
__version__ = ".".join(str(x) for x in __version_info__)
7474

7575
# Documentation strings format

jsonrpclib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:authors: Josh Marshall, Thomas Calmant
77
:copyright: Copyright 2017, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.3.0
9+
:version: 0.3.1
1010
1111
..
1212

jsonrpclib/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
:copyright: Copyright 2017, Thomas Calmant
77
:license: Apache License 2.0
8-
:version: 0.3.0
8+
:version: 0.3.1
99
1010
..
1111
@@ -29,7 +29,7 @@
2929
# ------------------------------------------------------------------------------
3030

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

3535
# Documentation strings format

jsonrpclib/history.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:authors: Josh Marshall, Thomas Calmant
77
:copyright: Copyright 2017, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.3.0
9+
:version: 0.3.1
1010
1111
..
1212
@@ -26,7 +26,7 @@
2626
"""
2727

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

3232
# Documentation strings format

jsonrpclib/jsonclass.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:authors: Josh Marshall, Thomas Calmant
77
:copyright: Copyright 2017, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.3.0
9+
:version: 0.3.1
1010
1111
..
1212
@@ -36,7 +36,7 @@
3636
# ------------------------------------------------------------------------------
3737

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

4242
# Documentation strings format

jsonrpclib/jsonrpc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
:authors: Josh Marshall, Thomas Calmant
3939
:copyright: Copyright 2017, Thomas Calmant
4040
:license: Apache License 2.0
41-
:version: 0.3.0
41+
:version: 0.3.1
4242
4343
..
4444
@@ -96,7 +96,7 @@
9696
# ------------------------------------------------------------------------------
9797

9898
# Module version
99-
__version_info__ = (0, 3, 0)
99+
__version_info__ = (0, 3, 1)
100100
__version__ = ".".join(str(x) for x in __version_info__)
101101

102102
# Documentation strings format

jsonrpclib/threadpool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:author: Thomas Calmant
77
:copyright: Copyright 2017, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.3.0
9+
:version: 0.3.1
1010
1111
..
1212
@@ -41,7 +41,7 @@
4141
# ------------------------------------------------------------------------------
4242

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

4747
# Documentation strings format

jsonrpclib/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:author: Thomas Calmant
77
:copyright: Copyright 2017, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.3.0
9+
:version: 0.3.1
1010
1111
..
1212
@@ -30,7 +30,7 @@
3030
# ------------------------------------------------------------------------------
3131

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

3636
# Documentation strings format

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:authors: Josh Marshall, Thomas Calmant
77
:copyright: Copyright 2017, Thomas Calmant
88
:license: Apache License 2.0
9-
:version: 0.3.0
9+
:version: 0.3.1
1010
1111
..
1212
@@ -26,7 +26,7 @@
2626
"""
2727

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

3232
# Documentation strings format

0 commit comments

Comments
 (0)