Skip to content

Commit 9ffbbfd

Browse files
authored
Merge pull request #250 from pytorch/bump-version-0.4.10
Bump theme to 0.4.10
2 parents 6780b18 + 95db038 commit 9ffbbfd

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to pytorch_sphinx_theme2 are documented here.
44

5+
## v0.4.10
6+
7+
### Bug Fixes
8+
9+
- **C++ Docs Navbar Bullets Fix** — Fixed top navigation bar rendering as a bulleted list in C++ docs. Wrapped fallback `generate_header_nav_html()` output in proper `<nav><ul class="bd-navbar-elements navbar-nav">` markup, and added `env-merge-info` handler to preserve toctree entries across parallel build workers.
10+
- **Right Nav Spacing Fix** — Fixed excessive vertical spacing between "On this page" TOC entries by switching `.page-toc .section-nav` from flex to block layout, restoring proper margin collapsing between items.
11+
12+
---
13+
514
## v0.4.9
615

716
### Performance

pytorch_sphinx_theme2/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.4.9"
1+
__version__ = "0.4.10"
22

33
import json
44
import os
@@ -525,7 +525,7 @@ def setup(app):
525525
)
526526

527527
return {
528-
"version": "0.4.9",
528+
"version": "0.4.10",
529529
"parallel_read_safe": True,
530530
"parallel_write_safe": True,
531531
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
author_email="svekars@meta.com",
1313
url="https://github.com/pytorch/pytorch_sphinx_theme",
1414
license="MIT",
15-
version="0.4.9",
15+
version="0.4.10",
1616
install_requires=[
1717
"pydata-sphinx-theme==0.15.4",
1818
"sphinx>=5.3.0,<=7.2.6",

0 commit comments

Comments
 (0)