Skip to content

Commit cbecfb0

Browse files
committed
build: version 1.0
1 parent fb6e8f7 commit cbecfb0

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All 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

faktory/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from contextlib import contextmanager
22

3-
from .worker import Worker
43
from .client import Client
54
from .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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
setup(
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",

0 commit comments

Comments
 (0)