Skip to content

Commit

Permalink
build: version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrx committed Apr 30, 2022
1 parent fb6e8f7 commit cbecfb0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## 1.0.0 - 2022-04-30

- Python 3.7+ is now required (#36)
- Fixed a type issue that crashed the worker (#41)
- Improved recovery from broken process pool error, thanks to @tswayne (#42)

## 0.5.1 - 2021-03-20

Expand All @@ -12,7 +17,6 @@ All notable changes to this project will be documented in this file.
- This release was yanked due to a build issue -- use 0.5.1 instead
- Added support for the `backtrace` option, thanks to @tswayne


## 0.4.0 - 2018-02-21

- Added support for job priorities
Expand Down
4 changes: 2 additions & 2 deletions faktory/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from contextlib import contextmanager

from .worker import Worker
from .client import Client
from .exceptions import *
from .worker import Worker

__version__ = "0.4.0"
__version__ = "1.0.0"
__url__ = "https://github.com/cdrx/faktory_worker_python"


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

setup(
name="faktory",
version="0.5.1",
version="1.0.0",
description="Python worker for the Faktory project",
extras_require=extras,
python_requires=">=3.7.0",
Expand Down

0 comments on commit cbecfb0

Please sign in to comment.