From 0f9e70266f95c66e14f31dc71da279043128e365 Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Fri, 30 Sep 2022 09:17:41 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.17.1=20(#451)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ myst_nb/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8743c3ce..269ad1e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## v0.17.1 - 2022-30-09 + +[Full changelog](https://github.com/executablebooks/MyST-NB/compare/v0.17.0...v0.17.1) + +- 👌 IMPROVE: `hide-output` button (#450) + This now uses the same margin color as the cell source and, when the cell source is present, is "connected" to that, to form a single element. + See [Hide cell contents](docs/render/hiding.md) for more information. + ## v0.17.0 - 2022-29-09 [Full changelog](https://github.com/executablebooks/MyST-NB/compare/v0.16.0...v0.17.0) @@ -10,6 +18,8 @@ - Nicer rendering of the hidden content buttons - Customisation of the hide/show prompts + See [Hide cell contents](docs/render/hiding.md) for more information. + - 🐛 FIX: Inline exec variables with multiple outputs (#440) Previously, it was assumed that a variable evaluation would only ever create 0 or 1 outputs. Multiple are now allowed. diff --git a/myst_nb/__init__.py b/myst_nb/__init__.py index 0f6b12bb..37989f68 100644 --- a/myst_nb/__init__.py +++ b/myst_nb/__init__.py @@ -1,5 +1,5 @@ """A docutils/sphinx parser for Jupyter Notebooks.""" -__version__ = "0.17.0" +__version__ = "0.17.1" def setup(app):