Skip to content

Commit 8448169

Browse files
committed
Release version 0.16.0
1 parent dd06562 commit 8448169

2 files changed

Lines changed: 26 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.16.0] - 2026-02-06
11+
12+
### Added
13+
- **Customizable emphasis and bold text colors** (#355, #356)
14+
- Six new `html_theme_options`: `emphasis_color`, `emphasis_color_dark`, `strong_color`, `strong_color_dark`, `definition_color`, `definition_color_dark`
15+
- Allows per-site color customization of italic (`<em>`), bold (`<strong>`/`<b>`), and definition list (`<dt>`) elements
16+
- Supports light and dark mode independently
17+
- CSS custom properties (`--qe-emphasis-color`, `--qe-strong-color`, `--qe-definition-color`) with SCSS fallbacks
18+
- Server-side validation of color values to prevent CSS injection
19+
- Comprehensive documentation in `docs/configure.md` with examples
20+
21+
### Fixed
22+
- **Math equation visual test stability** (#357)
23+
- Replaced fixed 1000ms timeout with `MathJax.startup.promise` for reliable math rendering detection
24+
- Captures paragraph container instead of tiny MathJax element to avoid dimension mismatches
25+
- **Update-snapshots workflow** (#357)
26+
- Added `continue-on-error: true` to handle missing snapshot exit codes gracefully
27+
28+
### Changed
29+
- **Dependency updates** (Dependabot)
30+
- Bump codecov/codecov-action from 5.5.1 to 5.5.2 (#351)
31+
- Bump actions/upload-artifact from 5 to 6 (#352)
32+
1033
## [0.15.1] - 2025-12-11
1134

1235
### Fixed
@@ -170,7 +193,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
170193
### Added
171194
- Initial stable release with core theme features
172195

173-
[Unreleased]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.15.1...HEAD
196+
[Unreleased]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.16.0...HEAD
197+
[0.16.0]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.15.1...v0.16.0
174198
[0.15.1]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.15.0...v0.15.1
175199
[0.15.0]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.14.0...v0.15.0
176200
[0.14.0]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.13.2...v0.14.0

src/quantecon_book_theme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
from .launch import add_hub_urls
1818

19-
__version__ = "0.15.1"
19+
__version__ = "0.16.0"
2020
"""quantecon-book-theme version"""
2121

2222
SPHINX_LOGGER = logging.getLogger(__name__)

0 commit comments

Comments
 (0)