From 5a15879f0ce3e5fbd770023930a89f1a4781e4ce Mon Sep 17 00:00:00 2001 From: fcollonval Date: Wed, 18 Dec 2024 13:34:51 +0000 Subject: [PATCH] Publish 0.4.0 SHA256 hashes: jupyter_nbmodel_client-0.4.0-py3-none-any.whl: 1587a014f91de99a919eacb844d210ecd0240f6db5f7a6aa48b4f36a23ca88e3 jupyter_nbmodel_client-0.4.0.tar.gz: 47bdb19db32be8155dc2f953adcc1e71b685d8d8a4b3465ea1ed8c7d1dfe4456 --- CHANGELOG.md | 24 ++++++++++++++++++++++-- jupyter_nbmodel_client/__init__.py | 2 +- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc6d3f5..b5bd72e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,28 @@ +## 0.4.0 + +([Full Changelog](https://github.com/datalayer/jupyter-nbmodel-client/compare/v0.3.0...20ff2d14a92d9339e8ddf8e7c091c102d3ea13fa)) + +### Enhancements made + +- docs: readme [#13](https://github.com/datalayer/jupyter-nbmodel-client/pull/13) ([@echarles](https://github.com/echarles)) + +### Bugs fixed + +- Use a lock to prevent document access or change between threads [#16](https://github.com/datalayer/jupyter-nbmodel-client/pull/16) ([@fcollonval](https://github.com/fcollonval)) +- Revert "Use multithreading flag" [#15](https://github.com/datalayer/jupyter-nbmodel-client/pull/15) ([@fcollonval](https://github.com/fcollonval)) +- Use multithreading flag [#14](https://github.com/datalayer/jupyter-nbmodel-client/pull/14) ([@fcollonval](https://github.com/fcollonval)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/datalayer/jupyter-nbmodel-client/graphs/contributors?from=2024-12-10&to=2024-12-18&type=c)) + +[@echarles](https://github.com/search?q=repo%3Adatalayer%2Fjupyter-nbmodel-client+involves%3Aecharles+updated%3A2024-12-10..2024-12-18&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Adatalayer%2Fjupyter-nbmodel-client+involves%3Afcollonval+updated%3A2024-12-10..2024-12-18&type=Issues) + + + ## 0.3.0 ([Full Changelog](https://github.com/datalayer/jupyter-nbmodel-client/compare/v0.2.0...cfc7a804957b777900c105cada76993ce0f6d0c0)) @@ -26,8 +48,6 @@ [@fcollonval](https://github.com/search?q=repo%3Adatalayer%2Fjupyter-nbmodel-client+involves%3Afcollonval+updated%3A2024-12-09..2024-12-10&type=Issues) - - ## 0.2.0 ([Full Changelog](https://github.com/datalayer/jupyter-nbmodel-client/compare/v0.1.1...590550c1b7d76656f10a0ad59b133d5fe6ab5556)) diff --git a/jupyter_nbmodel_client/__init__.py b/jupyter_nbmodel_client/__init__.py index 387f7d0..762f36c 100644 --- a/jupyter_nbmodel_client/__init__.py +++ b/jupyter_nbmodel_client/__init__.py @@ -9,6 +9,6 @@ from .client import NbModelClient from .model import KernelClient, NotebookModel -__version__ = "0.3.0" +__version__ = "0.4.0" __all__ = ["KernelClient", "NbModelClient", "NotebookModel", "NotebookNode"]