From bf1b7f64408ae8039f11f1839900adee3599b26a Mon Sep 17 00:00:00 2001 From: slow-but-steady Date: Mon, 29 May 2023 17:19:51 -0700 Subject: [PATCH] 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 7885b33d24f339e511d37f15c83d2b71a8ec4bbd --- python/save_thread_result/__init__.py | 2 +- python/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/save_thread_result/__init__.py b/python/save_thread_result/__init__.py index e91d1ae..fdc3b1b 100644 --- a/python/save_thread_result/__init__.py +++ b/python/save_thread_result/__init__.py @@ -9,7 +9,7 @@ from datetime import datetime -__version__ = '0.1.0' +__version__ = '0.1.1' _general_documentation = ''' diff --git a/python/setup.py b/python/setup.py index 3e520e5..02cc616 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.1.0', + version = '0.1.1', name = 'save-thread-result', 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! 🌟', long_description = long_description,