Skip to content

Commit bf1b7f6

Browse files
committed
0.1.1: Update internal implementation of ThreadWithResult
- this release does not add any new functionality nor modify existing functionality - HOWEVER, if any existing code relied on any undocumented, implementation details of the previous `ThreadWithResult` implementation, the previous implementation can be accessed by doing something like ``` from save_thread_result import ___init__OverrideThreadWithResult as ThreadWithResult # code to use ThreadWithResult remains unchanged ``` - for an explanation about the changes to the `ThreadWithResult` implementation, see commit 7885b33
1 parent 21bd027 commit bf1b7f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/save_thread_result/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from datetime import datetime
1010

1111

12-
__version__ = '0.1.0'
12+
__version__ = '0.1.1'
1313

1414

1515
_general_documentation = '''

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.1.0',
34+
version = '0.1.1',
3535
name = 'save-thread-result',
3636
description = 'Simple subclass wrapper around `threading.Thread` to get the return value from a thread in python. Exact same interface as `threading.Thread`! 🌟 Star this repo if you found it useful! 🌟',
3737
long_description = long_description,

0 commit comments

Comments
 (0)