Skip to content

Commit 0358a7c

Browse files
committed
Release version 0.15.1
1 parent d434e2c commit 0358a7c

2 files changed

Lines changed: 20 additions & 2 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.15.1] - 2025-12-11
11+
12+
### Fixed
13+
- **Notebook launch URLs with `path_to_docs`** (#345)
14+
- Fixed bug where `path_to_docs` prefix was incorrectly included in notebook URLs
15+
- When docs are in a subdirectory (e.g., `lectures/`) but notebooks are in a flat repo structure, launch buttons (Colab, JupyterHub, Binder) now generate correct URLs
16+
- Added comprehensive test coverage including backward compatibility tests
17+
- **Visual regression test stability** (#350)
18+
- Fixed flaky MathJax visual regression test by using `maxDiffPixels` instead of `maxDiffPixelRatio`
19+
- Handles minor rendering variations across different environments
20+
21+
### Changed
22+
- **Dependency updates** (Dependabot)
23+
- Bump actions/github-script from 7 to 8 (#348)
24+
- Bump actions/upload-artifact from 4 to 5 (#347)
25+
- Bump actions/setup-node from 4 to 6 (#346)
26+
1027
## [0.15.0] - 2025-12-08
1128

1229
### Changed
@@ -153,7 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
153170
### Added
154171
- Initial stable release with core theme features
155172

156-
[Unreleased]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.15.0...HEAD
173+
[Unreleased]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.15.1...HEAD
174+
[0.15.1]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.15.0...v0.15.1
157175
[0.15.0]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.14.0...v0.15.0
158176
[0.14.0]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.13.2...v0.14.0
159177
[0.13.2]: https://github.com/QuantEcon/quantecon-book-theme/compare/v0.13.1...v0.13.2

src/quantecon_book_theme/__init__.py

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

1616
from .launch import add_hub_urls
1717

18-
__version__ = "0.15.0"
18+
__version__ = "0.15.1"
1919
"""quantecon-book-theme version"""
2020

2121
SPHINX_LOGGER = logging.getLogger(__name__)

0 commit comments

Comments
 (0)