From 0007a4564efa00c046e138bc15845d741e44da2f Mon Sep 17 00:00:00 2001 From: blink1073 Date: Mon, 19 Dec 2022 11:57:44 +0000 Subject: [PATCH] Publish 7.2.7 SHA256 hashes: nbconvert-7.2.7-py3-none-any.whl: e057f1f87a6ac50629b724d9a46b40e2ba394d6f20ee7f33f4acef1928a15af3 nbconvert-7.2.7.tar.gz: 8b727b0503bf4e0ff3907c8bea030d3fc4015fbee8669ac6ac2a5a6668b49d5e --- CHANGELOG.md | 22 ++++++++++++++++++++-- nbconvert/_version.py | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98a018e54..b4a1086d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ +## 7.2.7 + +([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.2.6...a32c3c1063e081d7e639b7f1670788d220b93810)) + +### Bugs fixed + +- Fix Hanging Tests on Linux [#1924](https://github.com/jupyter/nbconvert/pull/1924) ([@blink1073](https://github.com/blink1073)) + +### Maintenance and upkeep improvements + +- Adopt ruff and handle lint [#1925](https://github.com/jupyter/nbconvert/pull/1925) ([@blink1073](https://github.com/blink1073)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/nbconvert/graphs/contributors?from=2022-12-05&to=2022-12-19&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Ablink1073+updated%3A2022-12-05..2022-12-19&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Apre-commit-ci+updated%3A2022-12-05..2022-12-19&type=Issues) + + + ## 7.2.6 ([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.2.5...788dd3c4de1b6333e807250d0f33b59b80d5b202)) @@ -22,8 +42,6 @@ [@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Ablink1073+updated%3A2022-11-14..2022-12-05&type=Issues) - - ## 7.2.5 ([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.2.4...e5fefbb17b0bf3d6b5bbeb9a2ee62412d75ab0d8)) diff --git a/nbconvert/_version.py b/nbconvert/_version.py index 9e291e28c..dd146a60c 100644 --- a/nbconvert/_version.py +++ b/nbconvert/_version.py @@ -2,7 +2,7 @@ from typing import List # Version string must appear intact for versioning -__version__ = "7.2.6" +__version__ = "7.2.7" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"