From 7c6fce9cbd1d03dc640aa33329f2861149a3a614 Mon Sep 17 00:00:00 2001 From: trungleduc Date: Thu, 10 Aug 2023 18:09:16 +0000 Subject: [PATCH] Publish 0.5.0rc0 SHA256 hashes: voila-0.5.0rc0-py3-none-any.whl: f3574ca7cac46e75ada7633faa244e552c8679984dbce5c0d5f44d8e9c960917 voila-0.5.0rc0.tar.gz: 880e93af6ef4db0ffa28a142ef265c2a9476174f4f6d1ac95e1b9a7bf28393e2 voila-dashboards-jupyterlab-preview-2.3.0-rc.0.tgz: e6c01dbb4e27e5975b8e706546d69a56c5c3d9f150becf79b7e4b51c0739b4c1 voila-dashboards-voila-0.5.0-rc.0.tgz: 11c8787d39f20d64697218f392ef5fd78ff2ea43bf2b7e91d07ae1d8a45e7a9e --- CHANGELOG.md | 26 ++++++++++++++++++++++-- packages/jupyterlab-preview/package.json | 2 +- packages/voila/package.json | 2 +- voila/_version.py | 2 +- yarn.lock | 4 ++-- 5 files changed, 29 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75469cc01..13d536736 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,30 @@ +## 0.5.0rc0 + +([Full Changelog](https://github.com/voila-dashboards/voila/compare/v0.5.0b1...8a46a250263e2d54ed252fdf01ba2e9be573f59d)) + +### Enhancements made + +- Create tree plugin [#1374](https://github.com/voila-dashboards/voila/pull/1374) ([@trungleduc](https://github.com/trungleduc)) + +### Bugs fixed + +- Do not load disabled extension. [#1370](https://github.com/voila-dashboards/voila/pull/1370) ([@trungleduc](https://github.com/trungleduc)) + +### Documentation improvements + +- Mention Voici in documentation [#1371](https://github.com/voila-dashboards/voila/pull/1371) ([@martinRenou](https://github.com/martinRenou)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/voila-dashboards/voila/graphs/contributors?from=2023-08-03&to=2023-08-10&type=c)) + +[@github-actions](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3Agithub-actions+updated%3A2023-08-03..2023-08-10&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3Ajtpio+updated%3A2023-08-03..2023-08-10&type=Issues) | [@martinRenou](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3AmartinRenou+updated%3A2023-08-03..2023-08-10&type=Issues) | [@trungleduc](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3Atrungleduc+updated%3A2023-08-03..2023-08-10&type=Issues) + + + ## 0.5.0b1 ([Full Changelog](https://github.com/voila-dashboards/voila/compare/@voila-dashboards/jupyterlab-preview@2.3.0-beta.0...a9c29a8f8f07f08ad165fc1bcbf87ca9bd09895e)) @@ -21,8 +45,6 @@ [@dependabot](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3Adependabot+updated%3A2023-08-02..2023-08-03&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3Agithub-actions+updated%3A2023-08-02..2023-08-03&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3Ajtpio+updated%3A2023-08-02..2023-08-03&type=Issues) | [@martinRenou](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3AmartinRenou+updated%3A2023-08-02..2023-08-03&type=Issues) | [@trungleduc](https://github.com/search?q=repo%3Avoila-dashboards%2Fvoila+involves%3Atrungleduc+updated%3A2023-08-02..2023-08-03&type=Issues) - - ## 0.5.0b0 ([Full Changelog](https://github.com/voila-dashboards/voila/compare/@voila-dashboards/jupyterlab-preview@2.3.0-alpha.5...72a7e5662b1d81c178674b30cde7741a0662df94)) diff --git a/packages/jupyterlab-preview/package.json b/packages/jupyterlab-preview/package.json index 5f7601d41..23c5ca653 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.0-beta.1", + "version": "2.3.0-rc.0", "description": "A JupyterLab preview extension for Voilà", "keywords": [ "jupyter", diff --git a/packages/voila/package.json b/packages/voila/package.json index 27b4b2163..2957d4846 100644 --- a/packages/voila/package.json +++ b/packages/voila/package.json @@ -1,6 +1,6 @@ { "name": "@voila-dashboards/voila", - "version": "0.5.0-beta.1", + "version": "0.5.0-rc.0", "description": "The Voilà Frontend", "author": "Voilà contributors", "license": "BSD-3-Clause", diff --git a/voila/_version.py b/voila/_version.py index f9138378d..b65b5a12c 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.0b1" +__version__ = "0.5.0rc0" # PEP440 version parser _version_regex = re.compile( diff --git a/yarn.lock b/yarn.lock index 90c9383ed..4e0a43619 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15940,11 +15940,11 @@ __metadata: "typescript@patch:typescript@~5.0.2#~builtin": version: 5.0.4 - resolution: "typescript@patch:typescript@npm%3A5.0.4#~builtin::version=5.0.4&hash=b5f058" + resolution: "typescript@patch:typescript@npm%3A5.0.4#~builtin::version=5.0.4&hash=85af82" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: d26b6ba97b6d163c55dbdffd9bbb4c211667ebebc743accfeb2c8c0154aace7afd097b51165a72a5bad2cf65a4612259344ff60f8e642362aa1695c760d303ac + checksum: bb309d320c59a26565fb3793dba550576ab861018ff3fd1b7fccabbe46ae4a35546bc45f342c0a0b6f265c801ccdf64ffd68f548f117ceb7f0eac4b805cd52a9 languageName: node linkType: hard