Skip to content

Commit

Permalink
Bump version 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
costrouc committed Dec 19, 2022
1 parent fbad50e commit 6178a60
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# [0.1.6] 12/19/2022

## Fixed

- issue with how errors are captured

# [0.1.5] 12/12/2022

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion fs_task_queue/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def __call__(self):
except Exception:
self.set_status(JobStatus.FAILED)
with (self.queue.result_directory / self.id).open("w") as f:
f.write("".join(traceback.format_stack()))
f.write(traceback.format_exc())

@property
def result(self):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "fs-task-queue"
version = "0.1.5"
version = "0.1.6"
description = "Filesystem based task queue"
readme = "README.md"
requires-python = ">=3.7"
Expand Down

0 comments on commit 6178a60

Please sign in to comment.