diff --git a/docs/changelog.md b/docs/changelog.md index fefac85..e3dee76 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,20 @@ # Changelog +## v0.0.10 - 2021-08-24 + +([full changelog](https://github.com/executablebooks/sphinx-thebe/compare/v0.0.9...e18d1bf94a8fa79476f035a349bd63d03bba83e7)) + +This is a minor release to conditionally load the JS on pages that have a "launch button". +This will save some load time on non-interactive pages. + +### Enhancements made + +- Option to conditionally load on pages, see [documentation for details](https://sphinx-thebe.readthedocs.io/en/latest/configure.html#only-load-js-on-certain-pages) [#30](https://github.com/executablebooks/sphinx-thebe/pull/30) ([@choldgraf](https://github.com/choldgraf)) + +### Other merged PRs + +- PIN: thebe v0.5.1 [#31](https://github.com/executablebooks/sphinx-thebe/pull/31) ([@choldgraf](https://github.com/choldgraf)) + ## v0.0.9 - 2021-08-21 ### Updates diff --git a/sphinx_thebe/__init__.py b/sphinx_thebe/__init__.py index 3d1bcce..b7fde2c 100644 --- a/sphinx_thebe/__init__.py +++ b/sphinx_thebe/__init__.py @@ -8,7 +8,7 @@ from docutils import nodes from sphinx.util import logging -__version__ = "0.0.9" +__version__ = "0.0.10" logger = logging.getLogger(__name__)