mirror of
https://github.com/jupyter/notebook.git
synced 2024-11-27 03:20:27 +08:00
Release 0.1.10
This commit is contained in:
parent
3cd1de3c34
commit
15f2ef0a5d
@ -1,5 +1,5 @@
|
||||
[bumpversion]
|
||||
current_version = 0, 1, 9, 'final', 0
|
||||
current_version = 0, 1, 10, 'final', 0
|
||||
commit = False
|
||||
tag = False
|
||||
parse = (?P<major>\d+)\,\ (?P<minor>\d+)\,\ (?P<patch>\d+)\,\ \'(?P<release>\S+)\'\,\ (?P<build>\d+)
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jupyterlab-classic/app",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
@ -18,14 +18,14 @@
|
||||
"watch": "webpack --watch"
|
||||
},
|
||||
"resolutions": {
|
||||
"@jupyterlab-classic/application": "~0.1.9",
|
||||
"@jupyterlab-classic/application-extension": "~0.1.9",
|
||||
"@jupyterlab-classic/docmanager-extension": "~0.1.9",
|
||||
"@jupyterlab-classic/help-extension": "~0.1.9",
|
||||
"@jupyterlab-classic/notebook-extension": "~0.1.9",
|
||||
"@jupyterlab-classic/terminal-extension": "~0.1.9",
|
||||
"@jupyterlab-classic/tree-extension": "~0.1.9",
|
||||
"@jupyterlab-classic/ui-components": "~0.1.9",
|
||||
"@jupyterlab-classic/application": "~0.1.10",
|
||||
"@jupyterlab-classic/application-extension": "~0.1.10",
|
||||
"@jupyterlab-classic/docmanager-extension": "~0.1.10",
|
||||
"@jupyterlab-classic/help-extension": "~0.1.10",
|
||||
"@jupyterlab-classic/notebook-extension": "~0.1.10",
|
||||
"@jupyterlab-classic/terminal-extension": "~0.1.10",
|
||||
"@jupyterlab-classic/tree-extension": "~0.1.10",
|
||||
"@jupyterlab-classic/ui-components": "~0.1.10",
|
||||
"@jupyterlab/application": "~3.0.7",
|
||||
"@jupyterlab/apputils": "~3.0.5",
|
||||
"@jupyterlab/apputils-extension": "~3.0.7",
|
||||
@ -84,14 +84,14 @@
|
||||
"react-dom": "~17.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab-classic/application": "^0.1.9",
|
||||
"@jupyterlab-classic/application-extension": "^0.1.9",
|
||||
"@jupyterlab-classic/docmanager-extension": "^0.1.9",
|
||||
"@jupyterlab-classic/help-extension": "^0.1.9",
|
||||
"@jupyterlab-classic/notebook-extension": "^0.1.9",
|
||||
"@jupyterlab-classic/terminal-extension": "^0.1.9",
|
||||
"@jupyterlab-classic/tree-extension": "^0.1.9",
|
||||
"@jupyterlab-classic/ui-components": "^0.1.9",
|
||||
"@jupyterlab-classic/application": "^0.1.10",
|
||||
"@jupyterlab-classic/application-extension": "^0.1.10",
|
||||
"@jupyterlab-classic/docmanager-extension": "^0.1.10",
|
||||
"@jupyterlab-classic/help-extension": "^0.1.10",
|
||||
"@jupyterlab-classic/notebook-extension": "^0.1.10",
|
||||
"@jupyterlab-classic/terminal-extension": "^0.1.10",
|
||||
"@jupyterlab-classic/tree-extension": "^0.1.10",
|
||||
"@jupyterlab-classic/ui-components": "^0.1.10",
|
||||
"@jupyterlab/apputils-extension": "^3.0.0",
|
||||
"@jupyterlab/celltags": "^3.0.0",
|
||||
"@jupyterlab/codemirror-extension": "^3.0.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jupyterlab-classic/buildutils",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"private": true,
|
||||
"description": "JupyterLab Classic - Build Utilities",
|
||||
"homepage": "https://github.com/jtpio/jupyterlab-classic",
|
||||
|
@ -12,7 +12,7 @@ VersionInfo = namedtuple('VersionInfo', [
|
||||
])
|
||||
|
||||
# DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
|
||||
version_info = VersionInfo(0, 1, 9, 'final', 0)
|
||||
version_info = VersionInfo(0, 1, 10, 'final', 0)
|
||||
|
||||
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jupyterlab-classic/application-extension",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"description": "JupyterLab Classic - Application Extension",
|
||||
"homepage": "https://github.com/jtpio/jupyterlab-classic",
|
||||
"bugs": {
|
||||
@ -39,8 +39,8 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab-classic/application": "^0.1.9",
|
||||
"@jupyterlab-classic/ui-components": "^0.1.9",
|
||||
"@jupyterlab-classic/application": "^0.1.10",
|
||||
"@jupyterlab-classic/ui-components": "^0.1.10",
|
||||
"@jupyterlab/application": "^3.0.0",
|
||||
"@jupyterlab/apputils": "^3.0.0",
|
||||
"@jupyterlab/celltags": "^3.0.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jupyterlab-classic/application",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"description": "JupyterLab Classic - Application",
|
||||
"homepage": "https://github.com/jtpio/jupyterlab-classic",
|
||||
"bugs": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jupyterlab-classic/docmanager-extension",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"description": "JupyterLab Classic - Document Manager Extension",
|
||||
"homepage": "https://github.com/jtpio/jupyterlab-classic",
|
||||
"bugs": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jupyterlab-classic/help-extension",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"description": "JupyterLab Classic - Help Extension",
|
||||
"homepage": "https://github.com/jtpio/jupyterlab-classic",
|
||||
"bugs": {
|
||||
@ -39,7 +39,7 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab-classic/ui-components": "^0.1.9",
|
||||
"@jupyterlab-classic/ui-components": "^0.1.10",
|
||||
"@jupyterlab/application": "^3.0.0",
|
||||
"@jupyterlab/apputils": "^3.0.0",
|
||||
"@jupyterlab/mainmenu": "^3.0.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jupyterlab-classic/lab-extension",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"description": "JupyterLab Classic - Lab Extension",
|
||||
"homepage": "https://github.com/jtpio/jupyterlab-classic",
|
||||
"bugs": {
|
||||
@ -46,7 +46,7 @@
|
||||
"watch:src": "tsc -w"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab-classic/ui-components": "^0.1.9",
|
||||
"@jupyterlab-classic/ui-components": "^0.1.10",
|
||||
"@jupyterlab/application": "^3.0.0",
|
||||
"@jupyterlab/apputils": "^3.0.0",
|
||||
"@jupyterlab/coreutils": "^5.0.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jupyterlab-classic/notebook-extension",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"description": "JupyterLab Classic - Notebook Extension",
|
||||
"homepage": "https://github.com/jtpio/jupyterlab-classic",
|
||||
"bugs": {
|
||||
@ -39,7 +39,7 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab-classic/application": "^0.1.9",
|
||||
"@jupyterlab-classic/application": "^0.1.10",
|
||||
"@jupyterlab/application": "^3.0.0",
|
||||
"@jupyterlab/apputils": "^3.0.0",
|
||||
"@jupyterlab/docmanager": "^3.0.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jupyterlab-classic/terminal-extension",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"description": "JupyterLab Classic - Terminal Extension",
|
||||
"homepage": "https://github.com/jtpio/jupyterlab-classic",
|
||||
"bugs": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jupyterlab-classic/tree-extension",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"description": "JupyterLab Classic - Tree Extension",
|
||||
"homepage": "https://github.com/jtpio/jupyterlab-classic",
|
||||
"bugs": {
|
||||
@ -39,7 +39,7 @@
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab-classic/application": "^0.1.9",
|
||||
"@jupyterlab-classic/application": "^0.1.10",
|
||||
"@jupyterlab/application": "^3.0.0",
|
||||
"@jupyterlab/apputils": "^3.0.0",
|
||||
"@jupyterlab/coreutils": "^5.0.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jupyterlab-classic/ui-components",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"description": "JupyterLab Classic - UI components",
|
||||
"homepage": "https://github.com/jtpio/jupyterlab-classic",
|
||||
"bugs": {
|
||||
|
Loading…
Reference in New Issue
Block a user