Skip to content

Commit 64c7630

Browse files
author
semantic-release
committed
RELEASE: 0.8.14
1 parent bdf9fbe commit 64c7630

File tree

5 files changed

+36
-4
lines changed

5 files changed

+36
-4
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,38 @@
11
# CHANGELOG
22

33

4+
## v0.8.14 (2025-05-09)
5+
6+
### Bug Fixes
7+
8+
- Remove superfluous theme/color mechanism
9+
([`bdf9fbe`](https://github.com/pythonnz/pdfbaker/commit/bdf9fbe3f3602241979ce29a40049126f24b6b29))
10+
11+
This is technically a breaking change but trivial to resolve in configs: No more special implicit
12+
treatment of "theme" to resolve a "style".
13+
14+
Just use regular variables like ``` style: primary_text_colour: {{ theme.off_black }}
15+
16+
secondary_text_colour: {{ theme.off_white }}
17+
18+
theme: off_black: "#2d2a2b"
19+
20+
off_white: "#f5f5f5" ```
21+
22+
### Code Style
23+
24+
- Show how you can add messages to the processing log
25+
([`a2c2b62`](https://github.com/pythonnz/pdfbaker/commit/a2c2b62d0be5c3a9a119c80e0a5a5cb00b81e8ab))
26+
27+
### Continuous Integration
28+
29+
- Don't run pre-commit/tests twice on push to main
30+
([`f721c24`](https://github.com/pythonnz/pdfbaker/commit/f721c24fc68e7ebe3f23e1c7fac255d93d4f26e8))
31+
32+
- Keep static `__version__` in `__init__.py`, update upon release
33+
([`d240591`](https://github.com/pythonnz/pdfbaker/commit/d240591f374ad055838a0a4381ae2591ca74626e))
34+
35+
436
## v0.8.13 (2025-05-09)
537

638
### Bug Fixes

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cff-version: 1.2.0
22
message: "If you use pdfbaker in your work, please cite it using the following metadata."
33
title: "pdfbaker"
4-
version: 0.8.13
4+
version: 0.8.14
55
date-released: 2025-05-09
66
repository-code: "https://github.com/pythonnz/pdfbaker"
77
license: "MIT"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pdfbaker"
3-
version = "0.8.13"
3+
version = "0.8.14"
44
description = "SVG Jinja templates + YAML config = PDF documents"
55
authors = [
66
{ name = "Danny W. Adair", email = "danny.adair@unfold.nz" }

src/pdfbaker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""pdfbaker - Create PDF documents from YAML-configured SVG templates."""
22

3-
__version__ = "0.8.13"
3+
__version__ = "0.8.14"
44
__all__ = ["__version__"]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)