Skip to content

Commit bb27281

Browse files
committed
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
1 parent 501a123 commit bb27281

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5+
## 0.9.2
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter_server_fileid/compare/v0.9.1...501a1230ac2e934c70bbb7267144f16fe6ed3484))
8+
9+
### Bugs fixed
10+
11+
- Check for ID before creating a new record [#78](https://github.com/jupyter-server/jupyter_server_fileid/pull/78) ([@Zsailer](https://github.com/Zsailer))
12+
- 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))
13+
14+
### Maintenance and upkeep improvements
15+
16+
- Update Release Scripts [#79](https://github.com/jupyter-server/jupyter_server_fileid/pull/79) ([@blink1073](https://github.com/blink1073))
17+
18+
### Contributors to this release
19+
20+
([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))
21+
22+
[@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)
23+
24+
<!-- <END NEW CHANGELOG ENTRY> -->
25+
526
## 0.9.1
627

728
([Full Changelog](https://github.com/jupyter-server/jupyter_server_fileid/compare/v0.9.0...a5e65c99791a20e4684c55f631d2d7fef3c3fdad))
@@ -22,8 +43,6 @@
2243

2344
[@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)
2445

25-
<!-- <END NEW CHANGELOG ENTRY> -->
26-
2746
## 0.9.0
2847

2948
([Full Changelog](https://github.com/jupyter-server/jupyter_server_fileid/compare/v0.8.0...505806162b4df60b4cbb461cfec1266b81df32ce))

jupyter_server_fileid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""A Jupyter Server extension providing an implementation of the File ID service."""
22
from .extension import FileIdExtension
33

4-
__version__ = "0.9.1"
4+
__version__ = "0.9.2"
55

66

77
def _jupyter_server_extension_points():

0 commit comments

Comments
 (0)