Skip to content

Commit b42aaea

Browse files
author
semantic-release
committed
RELEASE: 0.11.0
1 parent 8432a24 commit b42aaea

File tree

5 files changed

+48
-5
lines changed

5 files changed

+48
-5
lines changed

CHANGELOG.md

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

33

4+
## v0.11.0 (2025-05-23)
5+
6+
### Bug Fixes
7+
8+
- Escape XKCD title and alt text
9+
([`8432a24`](https://github.com/pythonnz/pdfbaker/commit/8432a24eef9eb365149c9d3dbcff67eda8e12394))
10+
11+
Otherwise the SVG can be become invalid...
12+
13+
``` "Applying renormalization to bullies successfully transformed Pete & Pete's Endless Mike into
14+
Finite Mike." ``` needs to be escaped to ``` Pete & Pete's Endless Mike into Finite Mike.
15+
```
16+
17+
### Code Style
18+
19+
- Don't show location of build directory in a dry-run
20+
([`cd4c675`](https://github.com/pythonnz/pdfbaker/commit/cd4c67529a9f690f272fd44a9c297e5fc8a39341))
21+
22+
It wouldn't have been created...
23+
24+
### Documentation
25+
26+
- Add "Usage" document, adjust README and overview, fix custom locations
27+
([`2c390da`](https://github.com/pythonnz/pdfbaker/commit/2c390da73db7da6af718ecd9192bd021d1a81341))
28+
29+
- Fix config file path in library example (same as in CLI example)
30+
([`6c3198a`](https://github.com/pythonnz/pdfbaker/commit/6c3198ac2969c54daee96ff839267c8dfc3e608b))
31+
32+
- Improve README
33+
([`8a22464`](https://github.com/pythonnz/pdfbaker/commit/8a22464ca07e95e98a8ad4ce9145520a885145a5))
34+
35+
- add what you get from using SVG+YAML - add how quickly you can get started - Move "Documentation"
36+
to be before "Examples"
37+
38+
### Features
39+
40+
- Improve logging and console UI with rich formatting
41+
([`fcf16ed`](https://github.com/pythonnz/pdfbaker/commit/fcf16ed2960fcba1155b8128857e5c9610edb379))
42+
43+
* Use rich and rich-click - colors, panels etc. * Proper syntax highlighting for SVG and YAML * Show
44+
directory tree after --create-from * Don't repeat identical subprocess log messages, count them
45+
46+
447
## v0.10.0 (2025-05-18)
548

649
### Code Style

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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.10.0
5-
date-released: 2025-05-18
4+
version: 0.11.0
5+
date-released: 2025-05-23
66
repository-code: "https://github.com/pythonnz/pdfbaker"
77
license: "MIT"
88
authors:

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.10.0"
3+
version = "0.11.0"
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.10.0"
3+
__version__ = "0.11.0"
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)