From bb27281dd76063dc0b3d09d4b5d5e0703cb84f30 Mon Sep 17 00:00:00 2001 From: Zsailer Date: Thu, 18 Apr 2024 16:34:42 +0000 Subject: [PATCH] Publish 0.9.2 SHA256 hashes: jupyter_server_fileid-0.9.2-py3-none-any.whl: 76a2fbcea6950968485dcd509c2d6ac417ca11e61ab1ad447a475f0878ca808f jupyter_server_fileid-0.9.2.tar.gz: ffb11460ca5f8567644f6120b25613fca8e3f3048b38d14c6e3fe1902f314a9b --- CHANGELOG.md | 23 +++++++++++++++++++++-- jupyter_server_fileid/__init__.py | 2 +- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06c970e..5d08c50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ +## 0.9.2 + +([Full Changelog](https://github.com/jupyter-server/jupyter_server_fileid/compare/v0.9.1...501a1230ac2e934c70bbb7267144f16fe6ed3484)) + +### Bugs fixed + +- Check for ID before creating a new record [#78](https://github.com/jupyter-server/jupyter_server_fileid/pull/78) ([@Zsailer](https://github.com/Zsailer)) +- Use a context manager for all write actions to prevent indefinite database locks [#77](https://github.com/jupyter-server/jupyter_server_fileid/pull/77) ([@Zsailer](https://github.com/Zsailer)) + +### Maintenance and upkeep improvements + +- Update Release Scripts [#79](https://github.com/jupyter-server/jupyter_server_fileid/pull/79) ([@blink1073](https://github.com/blink1073)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter_server_fileid/graphs/contributors?from=2023-12-19&to=2024-04-18&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Ablink1073+updated%3A2023-12-19..2024-04-18&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Awelcome+updated%3A2023-12-19..2024-04-18&type=Issues) | [@Zsailer](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3AZsailer+updated%3A2023-12-19..2024-04-18&type=Issues) + + + ## 0.9.1 ([Full Changelog](https://github.com/jupyter-server/jupyter_server_fileid/compare/v0.9.0...a5e65c99791a20e4684c55f631d2d7fef3c3fdad)) @@ -22,8 +43,6 @@ [@cmd-ntrf](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Acmd-ntrf+updated%3A2023-04-09..2023-12-19&type=Issues) | [@codecov](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Acodecov+updated%3A2023-04-09..2023-12-19&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Adlqqq+updated%3A2023-04-09..2023-12-19&type=Issues) | [@stonebig](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Astonebig+updated%3A2023-04-09..2023-12-19&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Awelcome+updated%3A2023-04-09..2023-12-19&type=Issues) | [@Zsailer](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3AZsailer+updated%3A2023-04-09..2023-12-19&type=Issues) - - ## 0.9.0 ([Full Changelog](https://github.com/jupyter-server/jupyter_server_fileid/compare/v0.8.0...505806162b4df60b4cbb461cfec1266b81df32ce)) diff --git a/jupyter_server_fileid/__init__.py b/jupyter_server_fileid/__init__.py index a05208e..1aadce7 100644 --- a/jupyter_server_fileid/__init__.py +++ b/jupyter_server_fileid/__init__.py @@ -1,7 +1,7 @@ """A Jupyter Server extension providing an implementation of the File ID service.""" from .extension import FileIdExtension -__version__ = "0.9.1" +__version__ = "0.9.2" def _jupyter_server_extension_points():