From 62d45a1417bed27ab81ac24b27fdafbf4e4edd26 Mon Sep 17 00:00:00 2001 From: davidbrochart Date: Fri, 29 Nov 2024 08:28:13 +0000 Subject: [PATCH] Publish 0.10.1 SHA256 hashes: nbclient-0.10.1-py3-none-any.whl: 949019b9240d66897e442888cfb618f69ef23dc71c01cb5fced8499c2cfc084d nbclient-0.10.1.tar.gz: 3e93e348ab27e712acd46fccd809139e356eb9a31aab641d1a7991a6eb4e6f68 --- CHANGELOG.md | 22 ++++++++++++++++++++-- nbclient/_version.py | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30b4234..85f8757 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ +## 0.10.1 + +([Full Changelog](https://github.com/jupyter/nbclient/compare/v0.10.0...e6df5842d471047afcb45595d95a39be549896e4)) + +### Maintenance and upkeep improvements + +- Run docs on ubuntu [#314](https://github.com/jupyter/nbclient/pull/314) ([@blink1073](https://github.com/blink1073)) + +### Other merged PRs + +- avoid deprecation warning for py313 [#320](https://github.com/jupyter/nbclient/pull/320) ([@lucascolley](https://github.com/lucascolley)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/nbclient/graphs/contributors?from=2024-03-13&to=2024-11-29&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Ablink1073+updated%3A2024-03-13..2024-11-29&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Adavidbrochart+updated%3A2024-03-13..2024-11-29&type=Issues) | [@lucascolley](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Alucascolley+updated%3A2024-03-13..2024-11-29&type=Issues) + + + ## 0.10.0 ([Full Changelog](https://github.com/jupyter/nbclient/compare/v0.9.1...3286ae09f41d04fd3354519582750775abc034e5)) @@ -16,8 +36,6 @@ [@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Ablink1073+updated%3A2024-03-12..2024-03-12&type=Issues) | [@wpk-nist-gov](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Awpk-nist-gov+updated%3A2024-03-12..2024-03-12&type=Issues) - - ## 0.9.1 ([Full Changelog](https://github.com/jupyter/nbclient/compare/v0.9.0...6f6aa8cb1a853c81975fcc48fa5cfcc3d37bcddd)) diff --git a/nbclient/_version.py b/nbclient/_version.py index 2d4fe37..e51e638 100644 --- a/nbclient/_version.py +++ b/nbclient/_version.py @@ -2,7 +2,7 @@ import re from typing import List, Union -__version__ = "0.10.0" +__version__ = "0.10.1" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"