Skip to content

Commit f4e8bcd

Browse files
committed
0.0.4: Fix documentation
1 parent 4354b66 commit f4e8bcd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

python/save_thread_result/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .thread_with_result import ThreadWithResult
22

33
'''
4-
version: 0.0.3
4+
version: 0.0.4
55
author: Shail-Shouryya
66
77
development_status: 4 - Beta
@@ -12,7 +12,7 @@
1212
'''
1313

1414

15-
__version__ = '0.0.3'
15+
__version__ = '0.0.4'
1616
__author__ = 'Shail-Shouryya'
1717
__email__ = '[email protected]'
1818
__development_status__ = '4 - Beta'

python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# 3. MAINTENANCE version when they make backwards-compatible bug fixes.
3232
# Adopting this approach as a project author allows users to make use of “compatible release” specifiers, where name ~= X.Y requires at least release X.Y, but also allows any later release with a matching MAJOR version.
3333
# Python projects adopting semantic versioning should abide by clauses 1-8 of the Semantic Versioning 2.0.0 specification: https://semver.org/.
34-
version = '0.0.3',
34+
version = '0.0.4',
3535
name = 'save-thread-result',
3636
description = 'Simple subclass wrapper around `threading.Thread` to get the return value from a thread in python (from `threading` built-in package in Python Standard library). Exact same interface for creating an instance of this threading sublcass as `threading.Thread`!',
3737
long_description = long_description,

0 commit comments

Comments
 (0)