From 5b4b7a0c07c48742ac17c60cbd2d6a13d09e29c2 Mon Sep 17 00:00:00 2001 From: blink1073 Date: Mon, 27 Nov 2023 18:24:51 +0000 Subject: [PATCH] Publish 6.27.1 SHA256 hashes: ipykernel-6.27.1-py3-none-any.whl: dab88b47f112f9f7df62236511023c9bdeef67abc73af7c652e4ce4441601686 ipykernel-6.27.1.tar.gz: 7d5d594b6690654b4d299edba5e872dc17bb7396a8d0609c97cb7b8a1c605de6 --- CHANGELOG.md | 18 ++++++++++++++++-- ipykernel/_version.py | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0b4856b..f6404b4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 6.27.1 + +([Full Changelog](https://github.com/ipython/ipykernel/compare/v6.27.0...f9c517e868462d05d6854204c2ad0a244db1cd19)) + +### Bugs fixed + +- Fix edit magic payload type [#1171](https://github.com/ipython/ipykernel/pull/1171) ([@blink1073](https://github.com/blink1073)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/ipython/ipykernel/graphs/contributors?from=2023-11-21&to=2023-11-27&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2023-11-21..2023-11-27&type=Issues) + + + ## 6.27.0 ([Full Changelog](https://github.com/ipython/ipykernel/compare/v6.26.0...465d34483103d23f471a4795fe5fabb9cf7ac3f5)) @@ -26,8 +42,6 @@ [@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2023-10-24..2023-11-21&type=Issues) | [@jjvraw](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ajjvraw+updated%3A2023-10-24..2023-11-21&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Apre-commit-ci+updated%3A2023-10-24..2023-11-21&type=Issues) - - ## 6.26.0 ([Full Changelog](https://github.com/ipython/ipykernel/compare/v6.25.2...966e0a41fc61e7850378ae672e28202eb29b10b0)) diff --git a/ipykernel/_version.py b/ipykernel/_version.py index e90a9717..95309e14 100644 --- a/ipykernel/_version.py +++ b/ipykernel/_version.py @@ -5,7 +5,7 @@ from typing import List # Version string must appear intact for hatch versioning -__version__ = "6.27.0" +__version__ = "6.27.1" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"