From 147bac6b6c4247c160e96f82fde9ed288bc40165 Mon Sep 17 00:00:00 2001 From: Chris Holdgraf Date: Tue, 24 Aug 2021 17:14:19 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.0.10=20(#33)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🚀 RELEASE: v0.0.10 * Update docs/changelog.md --- docs/changelog.md | 15 +++++++++++++++ sphinx_thebe/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) 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__)