From 392f1e9c71420a45d90d98b989f57d43e5872cdf Mon Sep 17 00:00:00 2001 From: blink1073 Date: Tue, 6 Feb 2024 00:39:48 +0000 Subject: [PATCH] Publish 7.15.0 SHA256 hashes: nbconvert-7.15.0-py3-none-any.whl: 0efd3ca74fd1525560e0312cec235e57dfbf3c5c775c7e61e04c532b28f8da6f nbconvert-7.15.0.tar.gz: ff3f54a1a5e1e024beb9fde8946d05b6d0bf68cd14b5f2f9dc5b545c8bc71055 --- CHANGELOG.md | 24 +++++++++++++++++++++--- nbconvert/_version.py | 2 +- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c38a87d48..2dcae1836 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ +## 7.15.0 + +([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.14.2...dff141e8c8b392b89eed0adbf035f33810706750)) + +### Enhancements made + +- Support configureable width and height of reveal presentations [#2104](https://github.com/jupyter/nbconvert/pull/2104) ([@franzhaas](https://github.com/franzhaas)) + +### Maintenance and upkeep improvements + +- chore: update pre-commit hooks [#2105](https://github.com/jupyter/nbconvert/pull/2105) ([@pre-commit-ci](https://github.com/pre-commit-ci)) +- handle xhtml void elements in mermaid diagrams [#2103](https://github.com/jupyter/nbconvert/pull/2103) ([@bollwyvl](https://github.com/bollwyvl)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/nbconvert/graphs/contributors?from=2024-01-16&to=2024-02-06&type=c)) + +[@bollwyvl](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Abollwyvl+updated%3A2024-01-16..2024-02-06&type=Issues) | [@franzhaas](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Afranzhaas+updated%3A2024-01-16..2024-02-06&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Apre-commit-ci+updated%3A2024-01-16..2024-02-06&type=Issues) + + + ## 7.14.2 ([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.14.1...9d8a7a8771d0349e49328efb7fc2b8fb99c7cc1f)) @@ -16,8 +37,6 @@ [@bollwyvl](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Abollwyvl+updated%3A2024-01-11..2024-01-16&type=Issues) - - ## 7.14.1 ([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.14.0...dedd81acdde7c96204d01f1392af896d2e6dbe1b)) @@ -1483,7 +1502,6 @@ raw template {%- endblock in_prompt -%} """ - exporter_attr = AttrExporter() output_attr, _ = exporter_attr.from_notebook_node(nb) assert "raw template" in output_attr diff --git a/nbconvert/_version.py b/nbconvert/_version.py index 893fc4883..e5ed2cd10 100644 --- a/nbconvert/_version.py +++ b/nbconvert/_version.py @@ -3,7 +3,7 @@ from typing import List # Version string must appear intact for versioning -__version__ = "7.14.2" +__version__ = "7.15.0" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"