Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
pytest --cov=sphinx_external_toc --cov-report=xml --cov-report=term-missing
- name: Upload to Codecov
if: matrix.python-version == '3.14'
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
name: pytests-py3.14
flags: pytests
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## v1.1.0 - 2025-01-16

([full changelog](https://github.com/executablebooks/sphinx-external-toc/compare/v1.0.1...v1.1.0))

### Added

- NEW: Advanced section numbering customization by @douden in https://github.com/executablebooks/sphinx-external-toc/pull/112

## v1.0.1 - 2023-12-12

([full changelog](https://github.com/executablebooks/sphinx-external-toc/compare/v1.0.0...21adcf94ca0e09e7fbce21bf87734435520169f2))
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -450,13 +450,11 @@ meta: {}

Questions / TODOs:

- ~~Add additional top-level keys, e.g. `appendices` (see https://github.com/sphinx-doc/sphinx/issues/2502) and `bibliography`.~~ Can be replaced by setting the numbering style and (possibly) restarting the numbering.
- Using `external_toc_exclude_missing` to exclude a certain file suffix:
currently if you had files `doc.md` and `doc.rst`, and put `doc.md` in your ToC,
it will add `doc.rst` to the excluded patterns but then, when looking for `doc.md`,
will still select `doc.rst` (since it is first in `source_suffix`).
Maybe open an issue on sphinx, that `doc2path` should respect exclude patterns.
- ~~Integrate https://github.com/executablebooks/sphinx-multitoc-numbering into this extension? (or upstream PR).~~ Included and enforced in this fork.
- document suppressing warnings
- test against orphan file
- https://github.com/executablebooks/sphinx-book-theme/pull/304
Expand Down
2 changes: 1 addition & 1 deletion sphinx_external_toc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
if TYPE_CHECKING:
from sphinx.application import Sphinx

__version__ = "1.1.0-dev"
__version__ = "1.1.0"


def setup(app: "Sphinx") -> dict:
Expand Down