File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 0.1.0a6 - 2021-04-18
4
+
5
+ - 👌 IMPROVE: Add ` ensure_index_file ` event on build completion
6
+ - ♻️ REFACTOR: Rename key: ` parts ` -> ` subtrees `
7
+ - ♻️ REFACTOR: ` sections ` -> ` items ` , and add ` format `
8
+ - The ` format ` key adds key-mapping for jupyter-book support.
9
+ - ♻️ REFACTOR: API naming: renamed to be more general:
10
+ - ` DocItem ` -> ` Document `
11
+ - ` DocItem.parts ` -> ` Document.subtrees `
12
+ - ` TocItem ` -> ` TocTree `
13
+ - ` TocItem.sections ` -> ` TocTree.items `
14
+
3
15
## 0.1.0a5 - 2021-04-10
4
16
5
17
🐛 FIX: ` numbered: true ` , this was being equated to ` numbered: 1 ` rather than ` numbered: 999 ` (i.e. infinite depth).
Original file line number Diff line number Diff line change 1
1
"""A sphinx extension that allows the site toctree to be defined in a single file."""
2
2
3
- __version__ = "0.1.0a5 "
3
+ __version__ = "0.1.0a6 "
4
4
5
5
6
6
from typing import TYPE_CHECKING
You can’t perform that action at this time.
0 commit comments