Skip to content

Commit d6a3c90

Browse files
committed
Publish 0.6.0
SHA256 hashes: jupyter_server_fileid-0.6.0-py3-none-any.whl: ac36436611b281cebbb5b9936a6f4850271bb411e13a287780a022dd0d2c3bf7 jupyter_server_fileid-0.6.0.tar.gz: a12209bdef4f2f9d57051b7556a089299fb9f26b501f643946854220c955be14
1 parent 328d893 commit d6a3c90

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

CHANGELOG.md

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

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

5+
## 0.6.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter_server_fileid/compare/v0.5.0...328d893ff2323f20925e036e57eb62f302fa94e2))
8+
9+
### Enhancements made
10+
11+
- set default file ID manager to arbitrary [#37](https://github.com/jupyter-server/jupyter_server_fileid/pull/37) ([@dlqqq](https://github.com/dlqqq))
12+
- remove unused REST API [#36](https://github.com/jupyter-server/jupyter_server_fileid/pull/36) ([@dlqqq](https://github.com/dlqqq))
13+
- allow for recursive moves, copies, deletes in ArbitraryFileIdManager [#35](https://github.com/jupyter-server/jupyter_server_fileid/pull/35) ([@dlqqq](https://github.com/dlqqq))
14+
- prefix root dir to records in ArbitraryFileIdManager [#34](https://github.com/jupyter-server/jupyter_server_fileid/pull/34) ([@dlqqq](https://github.com/dlqqq))
15+
- use UUIDs for default file ID manager implementations [#30](https://github.com/jupyter-server/jupyter_server_fileid/pull/30) ([@dlqqq](https://github.com/dlqqq))
16+
- implement optimistic get_path() in LocalFileIdManager [#38](https://github.com/jupyter-server/jupyter_server_fileid/pull/38) ([@dlqqq](https://github.com/dlqqq))
17+
- Fix abstract base class definition [#33](https://github.com/jupyter-server/jupyter_server_fileid/pull/33) ([@kevin-bates](https://github.com/kevin-bates))
18+
19+
### Contributors to this release
20+
21+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter_server_fileid/graphs/contributors?from=2022-10-25&to=2022-10-28&type=c))
22+
23+
[@codecov-commenter](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Acodecov-commenter+updated%3A2022-10-25..2022-10-28&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Adlqqq+updated%3A2022-10-25..2022-10-28&type=Issues) | [@kevin-bates](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Akevin-bates+updated%3A2022-10-25..2022-10-28&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Awelcome+updated%3A2022-10-25..2022-10-28&type=Issues)
24+
25+
<!-- <END NEW CHANGELOG ENTRY> -->
26+
527
## 0.5.0
628

729
([Full Changelog](https://github.com/jupyter-server/jupyter_server_fileid/compare/v0.4.2...d968097b42f7b4d21fd851bd69c23a34098e675a))
@@ -18,8 +40,6 @@
1840

1941
[@codecov-commenter](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Acodecov-commenter+updated%3A2022-10-21..2022-10-25&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Adavidbrochart+updated%3A2022-10-21..2022-10-25&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Adlqqq+updated%3A2022-10-21..2022-10-25&type=Issues) | [@kevin-bates](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Akevin-bates+updated%3A2022-10-21..2022-10-25&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_fileid+involves%3Apre-commit-ci+updated%3A2022-10-21..2022-10-25&type=Issues)
2042

21-
<!-- <END NEW CHANGELOG ENTRY> -->
22-
2343
## 0.4.2
2444

2545
([Full Changelog](https://github.com/jupyter-server/jupyter_server_fileid/compare/v0.4.1...15a183a28eb63741659971585acff9a23be05c18))

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.5.0"
4+
__version__ = "0.6.0"
55

66

77
def _jupyter_server_extension_points():

0 commit comments

Comments
 (0)