Skip to content

Commit b4e6212

Browse files
committed
Release v0.3.0 [build:windows]
1 parent aa8d982 commit b4e6212

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## PlutoBook 0.3.0 (2025-08-19)
4+
5+
- Replace the `format` parameter with `width` and `height` parameters in `Book::writeToPng` and related functions.
6+
- Add `html2png` command-line tool.
7+
- Extend `html2pdf` command-line tool with new options:
8+
- `--size`
9+
- `--margin`
10+
- `--media`
11+
- `--orientation`
12+
- `--width`
13+
- `--height`
14+
- `--margin-top`
15+
- `--margin-right`
16+
- `--margin-bottom`
17+
- `--margin-left`
18+
319
## PlutoBook 0.2.0 (2025-08-17)
420

521
- Add runtime autodetection of CA bundles and directories for curl.

include/plutobook.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ extern "C" {
4747
#endif
4848

4949
#define PLUTOBOOK_VERSION_MAJOR 0
50-
#define PLUTOBOOK_VERSION_MINOR 2
50+
#define PLUTOBOOK_VERSION_MINOR 3
5151
#define PLUTOBOOK_VERSION_MICRO 0
5252

5353
#define PLUTOBOOK_VERSION_ENCODE(major, minor, micro) (((major) * 10000) + ((minor) * 100) + ((micro) * 1))

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('plutobook', 'cpp',
2-
version: '0.2.0',
2+
version: '0.3.0',
33
license: 'MIT',
44
meson_version: '>=0.64.0',
55
default_options: ['cpp_std=c++20']

0 commit comments

Comments
 (0)