Skip to content

Commit e92ca22

Browse files
committed
Release v0.7.0
1 parent 14dabca commit e92ca22

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

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

3+
## PlutoBook 0.7.0 (2025-08-30)
4+
5+
- Add support for `row-gap`, `column-gap`, and `gap` in flex layout
6+
- Add support for CSS hex alpha notation
7+
- Fix flex layout to avoid shrinking table boxes below min preferred width
8+
- Fix flex layout to avoid shrinking table height
9+
- Fix table section height calculation to avoid double-counting border spacing
10+
- Fix preferred width calculation for replaced boxes
11+
312
## PlutoBook 0.6.0 (2025-08-27)
413

514
- Add support for `-pluto-qrcode()` in CSS `content` property for embedding QR codes

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 6
50+
#define PLUTOBOOK_VERSION_MINOR 7
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', 'c',
2-
version: '0.6.0',
2+
version: '0.7.0',
33
license: 'MIT',
44
meson_version: '>=0.64.0',
55
default_options: ['cpp_std=c++20']

0 commit comments

Comments
 (0)