From 1f1b89edb2170db1564a8f4d05dd24b7013109e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Perceval=20Wajsb=C3=BCrt?= Date: Tue, 26 Sep 2023 09:02:52 +0200 Subject: [PATCH] chore: bump version to 0.8.1 --- changelog.md | 12 ++++++++++++ edspdf/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index bb84dfee..3583237e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,17 @@ # Changelog +## v0.8.1 + +### Fixed + +- Fix typing to allow passing an accelerator dict to `Pipeline.pipe(...)` +- Removed multiprocessing accelerator debug output +- Fixed absolute links in github-pages docs (e.g. image assets) + +### Changed + +- Added auto-links to components in the docs (by comparing span contents with entry points) + ## v0.8.0 ### Added diff --git a/edspdf/__init__.py b/edspdf/__init__.py index 33897f80..9d5ed750 100644 --- a/edspdf/__init__.py +++ b/edspdf/__init__.py @@ -6,4 +6,4 @@ from . import utils # isort:skip -__version__ = "0.8.0" +__version__ = "0.8.1"