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):