Skip to content

Commit

Permalink
0.0.6: Convert to module (moved all code into __init__py)
Browse files Browse the repository at this point in the history
  • Loading branch information
shailshouryya committed Feb 8, 2021
1 parent 923b6b9 commit 05b4448
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/save_thread_result/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import threading


__version__ = '0.0.5'
__version__ = '0.0.6'
__author__ = 'Shail-Shouryya'
__email__ = '[email protected]'
__development_status__ = '4 - Beta'
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.5',
version = '0.0.6',
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 module in Python Standard library). Exact same interface for creating an instance of this threading sublcass as `threading.Thread`!',
long_description = long_description,
Expand Down

0 comments on commit 05b4448

Please sign in to comment.