diff --git a/CHANGELOG.md b/CHANGELOG.md index 155db50..d7f96c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log -## v0.0.1-alpha +## v0.1.2 + +- Added feature to do continuous numbering of toctrees inside a parent toctree. + +## v0.1.1 - Added feature to do continuous numbering of chapters across parts. diff --git a/docs/source/index.md b/docs/source/index.md index 302bb57..71996da 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -2,7 +2,7 @@ **An extension for continuous numbering of toctree elements across multiple toctrees**. -This package contains a [Sphinx](http://www.sphinx-doc.org/en/master/) extension to continuously number sections across multiple toctrees present in the same document. Also quite useful in [jupyter-book](https://jupyterbook.org/) projects for continuous numbering of chapters across different parts. +This package contains a [Sphinx](http://www.sphinx-doc.org/en/master/) extension to continuously number sections across multiple toctrees. Also quite useful in [jupyter-book](https://jupyterbook.org/) projects for continuous numbering of chapters across different parts. ```{warning} sphinx-multitoc-numbering is in an active development stage and may change rapidly. diff --git a/sphinx_multitoc_numbering/__init__.py b/sphinx_multitoc_numbering/__init__.py index 67afd04..17e5b93 100644 --- a/sphinx_multitoc_numbering/__init__.py +++ b/sphinx_multitoc_numbering/__init__.py @@ -18,7 +18,7 @@ logger = logging.getLogger(__name__) -__version__ = "0.1.1" +__version__ = "0.1.2" """sphinx-multitoc-numbering version"""