From beeb44a5c9334f53d96a54137aec50b3b053c7b9 Mon Sep 17 00:00:00 2001 From: davidbrochart Date: Tue, 29 Nov 2022 10:25:26 +0000 Subject: [PATCH] Publish 0.7.1 SHA256 hashes: nbclient-0.7.1-py3-none-any.whl: bb722f2751e3779d2ef13537772dcd1bf9c984aa58a40ca6c817d44bd12013fa nbclient-0.7.1.tar.gz: 290d933b290aedf04f1a4f148d79ce8ebbe7fb1ff738eb5dfbacd6fa10104be3 --- CHANGELOG.md | 23 +++++++++++++++++++++-- nbclient/_version.py | 2 +- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 976624c..13bb3b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ +## 0.7.1 + +([Full Changelog](https://github.com/jupyter/nbclient/compare/v0.7.0...168340e8313e63fd9e037280f98ed22d47e2231b)) + +### Maintenance and upkeep improvements + +- CI Refactor [#257](https://github.com/jupyter/nbclient/pull/257) ([@blink1073](https://github.com/blink1073)) + +### Other merged PRs + +- Remove nest-asyncio [#259](https://github.com/jupyter/nbclient/pull/259) ([@davidbrochart](https://github.com/davidbrochart)) +- Add upper bound to dependencies [#258](https://github.com/jupyter/nbclient/pull/258) ([@davidbrochart](https://github.com/davidbrochart)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/nbclient/graphs/contributors?from=2022-10-06&to=2022-11-29&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Ablink1073+updated%3A2022-10-06..2022-11-29&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Adavidbrochart+updated%3A2022-10-06..2022-11-29&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Apre-commit-ci+updated%3A2022-10-06..2022-11-29&type=Issues) + + + ## 0.7.0 ([Full Changelog](https://github.com/jupyter/nbclient/compare/v0.6.8...449f17d0374f43694d2203d216c97dd4ac7f2c0e)) @@ -19,8 +40,6 @@ [@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Ablink1073+updated%3A2022-09-09..2022-10-06&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Apre-commit-ci+updated%3A2022-09-09..2022-10-06&type=Issues) - - ## 0.6.8 ([Full Changelog](https://github.com/jupyter/nbclient/compare/v0.6.7...f7d72b2c6937fc30add18b7413f89b691d1710be)) diff --git a/nbclient/_version.py b/nbclient/_version.py index 09ce94a..e34dbcb 100644 --- a/nbclient/_version.py +++ b/nbclient/_version.py @@ -1,7 +1,7 @@ import re from typing import List, Union -__version__ = "0.7.0" +__version__ = "0.7.1" # Build up version_info tuple for backwards compatibility pattern = r'(?P\d+).(?P\d+).(?P\d+)(?P.*)'