From 56cee1c6bb74196e20d04373af30a5475b9bdf00 Mon Sep 17 00:00:00 2001 From: blink1073 Date: Tue, 10 Jan 2023 19:00:51 +0000 Subject: [PATCH] Publish 0.6.1 SHA256 hashes: jupyter_events-0.6.1-py3-none-any.whl: 353b165928cd411eecba6b194fd4a80219981e7d8ed2842b19b3c7beb4116258 jupyter_events-0.6.1.tar.gz: 119d3f6372f1d61cdf2b3f5a880516263d4704fc87633fd293386450e955679c --- CHANGELOG.md | 19 +++++++++++++++++-- jupyter_events/_version.py | 2 +- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88169c3..20233ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. +## 0.6.1 + +([Full Changelog](https://github.com/jupyter/jupyter_events/compare/v0.6.0...1aa57024d0a8c73b10d9944375f84c01ee9f5c33)) + +### Maintenance and upkeep improvements + +- Remove artificial cap on jsonschema dependency [#61](https://github.com/jupyter/jupyter_events/pull/61) ([@kevin-bates](https://github.com/kevin-bates)) +- Try dropping jsonschema dependency [#59](https://github.com/jupyter/jupyter_events/pull/59) ([@bretttully](https://github.com/bretttully)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/jupyter_events/graphs/contributors?from=2023-01-09&to=2023-01-10&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_events+involves%3Ablink1073+updated%3A2023-01-09..2023-01-10&type=Issues) | [@bretttully](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_events+involves%3Abretttully+updated%3A2023-01-09..2023-01-10&type=Issues) | [@kevin-bates](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_events+involves%3Akevin-bates+updated%3A2023-01-09..2023-01-10&type=Issues) + + + ## 0.6.0 ([Full Changelog](https://github.com/jupyter/jupyter_events/compare/v0.5.0...83f01b142c3190074d9e6108155514ddc6237d2c)) @@ -34,8 +51,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%3A2022-09-12..2023-01-09&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_events+involves%3Adependabot+updated%3A2022-09-12..2023-01-09&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_events+involves%3Adlqqq+updated%3A2022-09-12..2023-01-09&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_events+involves%3Apre-commit-ci+updated%3A2022-09-12..2023-01-09&type=Issues) - - ## 0.5.0 ([Full Changelog](https://github.com/jupyter/jupyter_events/compare/v0.4.0...af1db6f5b9052e54d5a65797b67bff17b80e7eec)) diff --git a/jupyter_events/_version.py b/jupyter_events/_version.py index c065e53..7e3027e 100644 --- a/jupyter_events/_version.py +++ b/jupyter_events/_version.py @@ -5,7 +5,7 @@ from typing import List # Version string must appear intact for hatch versioning -__version__ = "0.6.0" +__version__ = "0.6.1" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"