From 31df44f6e0efd1626fdf94ac7363e69df39c82db Mon Sep 17 00:00:00 2001 From: mmcky <mmcky@users.noreply.github.com> Date: Tue, 16 Aug 2022 16:59:36 +1000 Subject: [PATCH] [Release] Prepare for v0.13.1 (#1809) --- CHANGELOG.md | 12 ++++++++++++ jupyter_book/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index feec1999..32c7ccae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## v0.13.1 - 2022-08-16 + +([full changelog](https://github.com/executablebooks/jupyter-book/compare/v0.13.0...8a74127748066eac5e0e788a584cb31d18b66058)) + +This minor release includes improvements to the project documentation and includes the following fixes: + +### Fixes and Maintenance + +1. [#1750](https://github.com/executablebooks/jupyter-book/pull/1750) improves compatibility with sphinx>=5. +2. [#1774](https://github.com/executablebooks/jupyter-book/pull/1774) fixes an issue that enables math when using the `singlehtml` builder + + ## v0.13.0 - 2022-06-02 ([full changelog](https://github.com/executablebooks/jupyter-book/compare/v0.12.3...a2d441633d5aafed4e94bbc544183cf866213f3a)) diff --git a/jupyter_book/__init__.py b/jupyter_book/__init__.py index ef921db8..207bf5ed 100644 --- a/jupyter_book/__init__.py +++ b/jupyter_book/__init__.py @@ -1,6 +1,6 @@ """Build a book with Jupyter Notebooks and Sphinx.""" -__version__ = "0.13.0" +__version__ = "0.13.1" # We connect this function to the step after the builder is initialized -- GitLab