From 76433e74b22ce6e465699a4fbf3dc16965fa7183 Mon Sep 17 00:00:00 2001 From: Zsailer Date: Mon, 18 Mar 2024 17:41:46 +0000 Subject: [PATCH] Publish 0.10.0 SHA256 hashes: jupyter_events-0.10.0-py3-none-any.whl: 4b72130875e59d57716d327ea70d3ebc3af1944d3717e5a498b8a06c6c159960 jupyter_events-0.10.0.tar.gz: 670b8229d3cc882ec782144ed22e0d29e1c2d639263f92ca8383e66682845e22 --- CHANGELOG.md | 18 ++++++++++++++++-- jupyter_events/_version.py | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20bac04..cc5a2df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. +## 0.10.0 + +([Full Changelog](https://github.com/jupyter/jupyter_events/compare/v0.9.1...e7784fd09356ef074d69d1c2f192f1ad96f5f00c)) + +### Enhancements made + +- Enable adding listeners to event before the event is registered [#97](https://github.com/jupyter/jupyter_events/pull/97) ([@Zsailer](https://github.com/Zsailer)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/jupyter_events/graphs/contributors?from=2024-03-12&to=2024-03-18&type=c)) + +[@Zsailer](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_events+involves%3AZsailer+updated%3A2024-03-12..2024-03-18&type=Issues) + + + ## 0.9.1 ([Full Changelog](https://github.com/jupyter/jupyter_events/compare/v0.9.0...014a91c793b12d008bb744614a280bc14b5be7eb)) @@ -22,8 +38,6 @@ All notable changes to this project will be documented in this file. [@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_events+involves%3Ablink1073+updated%3A2023-11-06..2024-03-12&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_events+involves%3Apre-commit-ci+updated%3A2023-11-06..2024-03-12&type=Issues) - - ## 0.9.0 ([Full Changelog](https://github.com/jupyter/jupyter_events/compare/v0.8.0...228a04801224d127f4304e17398464d045794cf0)) diff --git a/jupyter_events/_version.py b/jupyter_events/_version.py index cced2f6..aed9853 100644 --- a/jupyter_events/_version.py +++ b/jupyter_events/_version.py @@ -6,7 +6,7 @@ import re # Version string must appear intact for hatch versioning -__version__ = "0.9.1" +__version__ = "0.10.0" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"