diff --git a/CHANGELOG.md b/CHANGELOG.md index d2052bf13..1afba99b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,22 @@ voila --token=my-secret-token notebook.ipynb +## 0.5.2 + +([Full Changelog](https://github.com/voila-dashboards/voila/compare/@voila-dashboards/jupyterlab-preview@2.3.1...253ba77a00302e59b5a6093d7d635eff52690440)) + +### Maintenance and upkeep improvements + +- Refactor Voila plugins so that it's easily reusable in Voici [#1387](https://github.com/voila-dashboards/voila/pull/1387) ([@trungleduc](https://github.com/trungleduc)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/voila-dashboards/voila/graphs/contributors?from=2023-08-25&to=2023-09-04&type=c)) + +[@trungleduc](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3Atrungleduc+updated%3A2023-08-25..2023-09-04&type=Issues) + + + ## 0.5.1 ([Full Changelog](https://github.com/voila-dashboards/voila/compare/v0.5.0...e854c3047a1bba6d26b0a4bde07b52133c511d56)) @@ -71,8 +87,6 @@ voila --token=my-secret-token notebook.ipynb [@github-actions](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3Agithub-actions+updated%3A2023-08-17..2023-08-25&type=Issues) | [@martinRenou](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3AmartinRenou+updated%3A2023-08-17..2023-08-25&type=Issues) | [@trungleduc](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3Atrungleduc+updated%3A2023-08-17..2023-08-25&type=Issues) - - ## 0.5.0 ([Full Changelog](https://github.com/voila-dashboards/voila/compare/v0.5.0rc0...96bffae6b5885b2bfd80983cf7026e177270ff80)) diff --git a/packages/jupyterlab-preview/package.json b/packages/jupyterlab-preview/package.json index ba2d157de..85c021731 100644 --- a/packages/jupyterlab-preview/package.json +++ b/packages/jupyterlab-preview/package.json @@ -1,6 +1,6 @@ { "name": "@voila-dashboards/jupyterlab-preview", - "version": "2.3.1", + "version": "2.3.2", "description": "A JupyterLab preview extension for Voilà", "keywords": [ "jupyter", diff --git a/packages/voila/package.json b/packages/voila/package.json index 7b4cd5f5a..ec626d019 100644 --- a/packages/voila/package.json +++ b/packages/voila/package.json @@ -1,6 +1,6 @@ { "name": "@voila-dashboards/voila", - "version": "0.5.1", + "version": "0.5.2", "description": "The Voilà Frontend", "author": "Voilà contributors", "license": "BSD-3-Clause", diff --git a/voila/_version.py b/voila/_version.py index 8f234b33a..e4ac036b4 100644 --- a/voila/_version.py +++ b/voila/_version.py @@ -14,7 +14,7 @@ from collections import namedtuple # Use "hatch version xx.yy.zz" to handle version changes -__version__ = "0.5.1" +__version__ = "0.5.2" # PEP440 version parser _version_regex = re.compile(