4.3.0
This commit is contained in:
parent
00685ec546
commit
b427da2517
@ -1,3 +1,10 @@
|
|||||||
|
* 4.3.0 - Aug 10 2017
|
||||||
|
|
||||||
|
- Ensure that functions wrapped with @func_set_timeout do not lose meta
|
||||||
|
information (such as name, docstrings, etc.). Special thanks to belongwqz on
|
||||||
|
github for noting the issue and suggesting functools.wraps
|
||||||
|
|
||||||
|
|
||||||
* 4.2.0 - Jun 4 2017
|
* 4.2.0 - Jun 4 2017
|
||||||
- Add "stop" method to StoppableThread (same as previous _stopThread method -
|
- Add "stop" method to StoppableThread (same as previous _stopThread method -
|
||||||
but with a 'public' name)
|
but with a 'public' name)
|
||||||
|
|||||||
@ -6,8 +6,8 @@
|
|||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
__version__ = '4.2.0'
|
__version__ = '4.3.0'
|
||||||
__version_tuple__ = (4, 2, 0)
|
__version_tuple__ = (4, 3, 0)
|
||||||
|
|
||||||
__all__ = ('func_timeout', 'func_set_timeout', 'FunctionTimedOut', 'StoppableThread')
|
__all__ = ('func_timeout', 'func_set_timeout', 'FunctionTimedOut', 'StoppableThread')
|
||||||
|
|
||||||
|
|||||||
2
setup.py
2
setup.py
@ -30,7 +30,7 @@ if __name__ == '__main__':
|
|||||||
log_description = summary
|
log_description = summary
|
||||||
|
|
||||||
setup(name='func_timeout',
|
setup(name='func_timeout',
|
||||||
version='4.2.0',
|
version='4.3.0',
|
||||||
packages=['func_timeout'],
|
packages=['func_timeout'],
|
||||||
author='Tim Savannah',
|
author='Tim Savannah',
|
||||||
author_email='kata198@gmail.com',
|
author_email='kata198@gmail.com',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user