Skip to content

Commit da30a7a

Browse files
authored
Merge pull request #238 from pytorch/them-bump-0.4.6
Bump theme to v0.4.6
2 parents d7272cd + ad49c82 commit da30a7a

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

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

33
All notable changes to pytorch_sphinx_theme2 are documented here.
44

5+
## v0.4.6
6+
7+
### Improvements
8+
9+
- **LLM Navigation Guide (llms.txt) Improvements** (PR #237) — Enhanced the `llms.txt` generator with several fixes:
10+
- Now enabled by default — generates `llms.txt` automatically unless disabled or a custom file is provided
11+
- Spec-compliant format with H1 title, quote block description, H2 sections, and proper title format
12+
- Added optional `llm_deduplicate_titles` theme option to disambiguate duplicate titles (e.g., "GRU" → "GRU (torch.nn.GRU)")
13+
- Generic fallback uses project name for description if `llm_description` is not set
14+
15+
### Bug Fixes
16+
17+
- **Google Search Fix** (PR #236) — Fixed issues with the Google custom search bar styling and responsive behavior
18+
19+
---
20+
521
## v0.4.5
622

723
### New Features

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.5"
1+
__version__ = "0.4.6"
22

33
import json
44
import os
@@ -694,7 +694,7 @@ def setup(app):
694694
)
695695

696696
return {
697-
"version": "0.4.5",
697+
"version": "0.4.6",
698698
"parallel_read_safe": True,
699699
"parallel_write_safe": True,
700700
}

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.5",
15+
version="0.4.6",
1616
install_requires=[
1717
"pydata-sphinx-theme==0.15.4",
1818
"sphinx>=5.3.0,<=7.2.6",

0 commit comments

Comments
 (0)