Skip to content

Commit e535648

Browse files
committed
Version number set to 0.2.6
1 parent 37c0d73 commit e535648

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 2015, isandlaTech
99
:license: Apache License 2.0
10-
:version: 0.2.5
10+
:version: 0.2.6
1111
1212
..
1313
@@ -27,7 +27,7 @@
2727
"""
2828

2929
# Module version
30-
__version_info__ = (0, 2, 5)
30+
__version_info__ = (0, 2, 6)
3131
__version__ = ".".join(str(x) for x in __version_info__)
3232

3333
# 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 2015, isandlaTech
88
:license: Apache License 2.0
9-
:version: 0.2.5
9+
:version: 0.2.6
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 2015, isandlaTech
77
:license: Apache License 2.0
8-
:version: 0.2.5
8+
:version: 0.2.6
99
1010
..
1111
@@ -25,7 +25,7 @@
2525
"""
2626

2727
# Module version
28-
__version_info__ = (0, 2, 5)
28+
__version_info__ = (0, 2, 6)
2929
__version__ = ".".join(str(x) for x in __version_info__)
3030

3131
# 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 2015, isandlaTech
88
:license: Apache License 2.0
9-
:version: 0.2.5
9+
:version: 0.2.6
1010
1111
..
1212
@@ -26,7 +26,7 @@
2626
"""
2727

2828
# Module version
29-
__version_info__ = (0, 2, 5)
29+
__version_info__ = (0, 2, 6)
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 2015, isandlaTech
88
:license: Apache License 2.0
9-
:version: 0.2.5
9+
:version: 0.2.6
1010
1111
..
1212
@@ -26,7 +26,7 @@
2626
"""
2727

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

3232
# 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 2015, isandlaTech
4040
:license: Apache License 2.0
41-
:version: 0.2.5
41+
:version: 0.2.6
4242
4343
..
4444
@@ -58,7 +58,7 @@
5858
"""
5959

6060
# Module version
61-
__version_info__ = (0, 2, 5)
61+
__version_info__ = (0, 2, 6)
6262
__version__ = ".".join(str(x) for x in __version_info__)
6363

6464
# 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 2015, isandlaTech
88
:license: Apache License 2.0
9-
:version: 0.2.5
9+
:version: 0.2.6
1010
1111
..
1212
@@ -29,7 +29,7 @@
2929
__docformat__ = "restructuredtext en"
3030

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

3535
# ------------------------------------------------------------------------------

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 2015, isandlaTech
88
:license: Apache License 2.0
9-
:version: 0.2.5
9+
:version: 0.2.6
1010
1111
..
1212
@@ -26,7 +26,7 @@
2626
"""
2727

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

3232
# 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 2015, isandlaTech
88
:license: Apache License 2.0
9-
:version: 0.2.5
9+
:version: 0.2.6
1010
1111
..
1212
@@ -26,7 +26,7 @@
2626
"""
2727

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

3232
# Documentation strings format

0 commit comments

Comments
 (0)