From fec19fa4d538495c3c02b85708878287463412ae Mon Sep 17 00:00:00 2001 From: blink1073 Date: Mon, 19 Feb 2024 12:37:10 +0000 Subject: [PATCH] Publish 7.16.1 SHA256 hashes: nbconvert-7.16.1-py3-none-any.whl: 3188727dffadfdc9c6a1c7250729063d7bc78b355ad7aa023138afa030d1cd07 nbconvert-7.16.1.tar.gz: e79e6a074f49ba3ed29428ed86487bf51509d9aab613bd8522ac08f6d28fd7fd --- CHANGELOG.md | 25 ++++++++++++++++++++++--- nbconvert/_version.py | 2 +- 2 files changed, 23 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b2d39fdc..2cccc3286 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,28 @@ +## 7.16.1 + +([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.16.0...443b30703078e6f7d5b1044f25fb77e219136aac)) + +### Maintenance and upkeep improvements + +- Fix permissions for prep release workflow [#2112](https://github.com/jupyter/nbconvert/pull/2112) ([@blink1073](https://github.com/blink1073)) +- Update publish workflow [#2111](https://github.com/jupyter/nbconvert/pull/2111) ([@blink1073](https://github.com/blink1073)) +- fix for tests/ dir not in sys.path, closes #2066 [#2108](https://github.com/jupyter/nbconvert/pull/2108) ([@ivanov](https://github.com/ivanov)) + +### Documentation improvements + +- Update project description [#2107](https://github.com/jupyter/nbconvert/pull/2107) ([@ivanov](https://github.com/ivanov)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/nbconvert/graphs/contributors?from=2024-02-07&to=2024-02-19&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Ablink1073+updated%3A2024-02-07..2024-02-19&type=Issues) | [@ivanov](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Aivanov+updated%3A2024-02-07..2024-02-19&type=Issues) + + + ## 7.16.0 ([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.15.0...87db94d2d31d77ad16eef2285bb764e97a6f3c11)) @@ -16,8 +38,6 @@ [@gwincr11](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Agwincr11+updated%3A2024-02-06..2024-02-07&type=Issues) - - ## 7.15.0 ([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.14.2...dff141e8c8b392b89eed0adbf035f33810706750)) @@ -1516,7 +1536,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 ca923e970..a43101e20 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.16.0" +__version__ = "7.16.1" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"