diff --git a/python/save_thread_result/__init__.py b/python/save_thread_result/__init__.py index 5fb2cb8..73b1838 100644 --- a/python/save_thread_result/__init__.py +++ b/python/save_thread_result/__init__.py @@ -1,7 +1,7 @@ from .thread_with_result import ThreadWithResult ''' -version: 0.0.3 +version: 0.0.4 author: Shail-Shouryya email: shailshouryya@gmail.com development_status: 4 - Beta @@ -12,7 +12,7 @@ ''' -__version__ = '0.0.3' +__version__ = '0.0.4' __author__ = 'Shail-Shouryya' __email__ = 'shailshouryya@gmail.com' __development_status__ = '4 - Beta' diff --git a/python/setup.py b/python/setup.py index e0607da..f417b45 100644 --- a/python/setup.py +++ b/python/setup.py @@ -31,7 +31,7 @@ # 3. MAINTENANCE version when they make backwards-compatible bug fixes. # 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. # Python projects adopting semantic versioning should abide by clauses 1-8 of the Semantic Versioning 2.0.0 specification: https://semver.org/. - version = '0.0.3', + version = '0.0.4', name = 'save-thread-result', 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`!', long_description = long_description,