Skip to content

Commit dc13c35

Browse files
committed
🚀 RELEASE: v0.1.0
1 parent e8ece9a commit dc13c35

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## 0.1.0 - 2021-04-27
4+
5+
- ♻️ REFACTOR: key `items` -> `entries`
6+
- 👌 IMPROVE: Add `--output` to `migrate` command
7+
38
## 0.1.0a8 - 2021-04-19
49

510
- 👌 IMPROVE: validate URL: Ensure value of `url` keys match regex used by Sphinx to identify them

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# sphinx-external-toc [IN-DEVELOPMENT]
1+
# sphinx-external-toc
22

33
[![Github-CI][github-ci]][github-link]
44
[![Coverage Status][codecov-badge]][codecov-link]
@@ -7,7 +7,7 @@
77

88
A sphinx extension that allows the documentation site-map (a.k.a Table of Contents) to be defined external to the documentation files.
99

10-
In normal Sphinx documentation, the documentation site-map is defined *via* a bottom-up approach - adding [`toctree` directives](https://www.sphinx-doc.org/en/master/usage/restructuredtext/directives.html#table-of-contents) within pages of the documentation.
10+
In normal Sphinx documentation, the documentation site-map is defined *via* a bottom-up approach - adding [`toctree` directives](https://www.sphinx-doc.org/en/master/usage/restructuredtext/directives.html#table-of-contents) within pages of the documentatio
1111

1212
This extension facilitates a **top-down** approach to defining the site-map structure, within a single YAML file.
1313

sphinx_external_toc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A sphinx extension that allows the site toctree to be defined in a single file."""
22

3-
__version__ = "0.1.0a8"
3+
__version__ = "0.1.0"
44

55

66
from typing import TYPE_CHECKING

0 commit comments

Comments
 (0)