File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file.
44
5+ ## 1.0.0 - 2022-04-30
6+
7+ - Python 3.7+ is now required (#36 )
8+ - Fixed a type issue that crashed the worker (#41 )
9+ - Improved recovery from broken process pool error, thanks to @tswayne (#42 )
510
611## 0.5.1 - 2021-03-20
712
@@ -12,7 +17,6 @@ All notable changes to this project will be documented in this file.
1217- This release was yanked due to a build issue -- use 0.5.1 instead
1318- Added support for the ` backtrace ` option, thanks to @tswayne
1419
15-
1620## 0.4.0 - 2018-02-21
1721
1822- Added support for job priorities
Original file line number Diff line number Diff line change 11from contextlib import contextmanager
22
3- from .worker import Worker
43from .client import Client
54from .exceptions import *
5+ from .worker import Worker
66
7- __version__ = "0.4 .0"
7+ __version__ = "1.0 .0"
88__url__ = "https://github.com/cdrx/faktory_worker_python"
99
1010
Original file line number Diff line number Diff line change 2222
2323setup (
2424 name = "faktory" ,
25- version = "0.5.1 " ,
25+ version = "1.0.0 " ,
2626 description = "Python worker for the Faktory project" ,
2727 extras_require = extras ,
2828 python_requires = ">=3.7.0" ,
You can’t perform that action at this time.
0 commit comments