diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cefdab6..5529459b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file. +## 0.5.1 + +([Full Changelog](https://github.com/jupyter-server/jupyter_server_ydoc/compare/v0.5.0...5d5f6dd96121beea37c4c646dd4feeb0579063fc)) + +### Enhancements made + +- Pass logger to YStore [#63](https://github.com/jupyter-server/jupyter_server_ydoc/pull/63) ([@davidbrochart](https://github.com/davidbrochart)) + +### Bugs fixed + +- Revert #61 [#62](https://github.com/jupyter-server/jupyter_server_ydoc/pull/62) ([@davidbrochart](https://github.com/davidbrochart)) + +### Maintenance and upkeep improvements + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter_server_ydoc/graphs/contributors?from=2022-11-22&to=2022-11-23&type=c)) + +[@codecov](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_ydoc+involves%3Acodecov+updated%3A2022-11-22..2022-11-23&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_ydoc+involves%3Adavidbrochart+updated%3A2022-11-22..2022-11-23&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_ydoc+involves%3Apre-commit-ci+updated%3A2022-11-22..2022-11-23&type=Issues) + + + ## 0.5.0 ([Full Changelog](https://github.com/jupyter-server/jupyter_server_ydoc/compare/v0.4.0...a8d0e59096b313cbdfc2595a9977041162b4e6b1)) @@ -22,8 +44,6 @@ All notable changes to this project will be documented in this file. [@codecov](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_ydoc+involves%3Acodecov+updated%3A2022-11-17..2022-11-22&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_ydoc+involves%3Adavidbrochart+updated%3A2022-11-17..2022-11-22&type=Issues) | [@hbcarlos](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server_ydoc+involves%3Ahbcarlos+updated%3A2022-11-17..2022-11-22&type=Issues) - - ## 0.4.0 ([Full Changelog](https://github.com/jupyter-server/jupyter_server_ydoc/compare/v0.3.0...7a024df7b96763d2e065a259728233101dd328e3)) diff --git a/jupyter_server_ydoc/__init__.py b/jupyter_server_ydoc/__init__.py index f3b36d8e..6207f0dd 100644 --- a/jupyter_server_ydoc/__init__.py +++ b/jupyter_server_ydoc/__init__.py @@ -2,7 +2,7 @@ from .app import YDocExtension -__version__ = "0.5.0" +__version__ = "0.5.1" def _jupyter_server_extension_points() -> List[Dict[str, Any]]: