From 35041ee32886057873a3bc8ec503eb202dabea67 Mon Sep 17 00:00:00 2001 From: mmcky <mmcky@users.noreply.github.com> Date: Thu, 4 Mar 2021 16:05:16 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20Version=200.10.1=20(#?= =?UTF-8?q?1251)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * update version and CHANGELOG * update CHANGELOG * add in other commits to CHANGELOG * fix link and PR ref --- CHANGELOG.md | 18 ++++++++++++++++++ jupyter_book/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f54d65d..23b0a5a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Change Log +## v0.10.1 2021-03-02 + +[full changelog](https://github.com/executablebooks/jupyter-book/compare/v0.10.0...a73538c22d6c8c7b7b198db79ada0f801d685856) | [GitHub contributors page for this release](https://github.com/executablebooks/jupyter-book/graphs/contributors?from=2021-01-30&to=2021-03-02&type=c) + +This is a minor update to include recent improvements made to [MyST-NB](https://github.com/executablebooks/myst-nb) + +### New + +1. An **experimental** MyST-NB feature that enables loading of code from a file for `code-cell` directives using a `:load: <file>` option. Additional information is available in the [myst-nb documentation](https://myst-nb.readthedocs.io/en/latest/use/markdown.html#syntax-for-code-cells) + +### Upgrades + +* ⬆ UPGRADE: myst-nb v0.12.0 ([#1238](https://github.com/executablebooks/jupyter-book/pull/1238), [@mmcky](https://github.com/mmcky)) + +### Maintain + +* 🔧 MAINTAIN: Expand `jupytext` version pinning ([#1221](https://github.com/executablebooks/jupyter-book/pull/1221), [@bollwyvl](https://github.com/bollwyvl)) + ## v0.10.0 2021-02-01 [full changelog](https://github.com/executablebooks/jupyter-book/compare/v0.9.1...d3c78097edda4fefb672e32344c3806c9cdc7a72) | [GitHub contributors page for this release](https://github.com/executablebooks/jupyter-book/graphs/contributors?from=2020-12-22&to=2021-01-30&type=c) diff --git a/jupyter_book/__init__.py b/jupyter_book/__init__.py index fd580f15..528f09ba 100644 --- a/jupyter_book/__init__.py +++ b/jupyter_book/__init__.py @@ -5,7 +5,7 @@ from .toc import add_toc_to_sphinx, add_toctree from .directive.toc import TableofContents, SwapTableOfContents -__version__ = "0.10.0" +__version__ = "0.10.1" def add_static_files(app, config): -- GitLab