Skip to content

Commit 0b48eb1

Browse files
committed
Release 0.2.0
1 parent 15b51c8 commit 0b48eb1

File tree

5 files changed

+516
-740
lines changed

5 files changed

+516
-740
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter-widgets/jupyterlab-sidecar",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "A sidecar output widget for JupyterLab",
55
"keywords": [
66
"jupyter",
@@ -42,7 +42,6 @@
4242
"@jupyter-widgets/jupyterlab-manager": "^0.37.2"
4343
},
4444
"devDependencies": {
45-
"@jupyterlab/application": "^0.18.2",
4645
"@phosphor/application": "^1.6.0",
4746
"@phosphor/widgets": "^1.6.0",
4847
"@types/expect.js": "^0.3.29",

setupbase.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def run(self):
354354

355355
if not which(npm_cmd[0]):
356356
log.error("`{0}` unavailable. If you're running this command "
357-
"using sudo, make sure `{0}` is availble to sudo"
357+
"using sudo, make sure `{0}` is available to sudo"
358358
.format(npm_cmd[0]))
359359
return
360360

@@ -459,7 +459,7 @@ def _wrap_command(cmds, cls, strict=True):
459459
cmds: list(str)
460460
The names of the other commands to run prior to the command.
461461
strict: boolean, optional
462-
Wether to raise errors when a pre-command fails.
462+
Whether to raise errors when a pre-command fails.
463463
"""
464464
class WrappedCommand(cls):
465465

@@ -507,7 +507,7 @@ def _get_data_files(data_specs, existing):
507507
data_specs: list of tuples
508508
See [createcmdclass] for description.
509509
existing: list of tuples
510-
The existing distrubution data_files metadata.
510+
The existing distribution data_files metadata.
511511
512512
Returns
513513
-------

sidecar/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (c) Project Jupyter.
55
# Distributed under the terms of the Modified BSD License.
66

7-
version_info = (0, 1, 0, 'dev')
7+
version_info = (0, 2, 0)
88
__version__ = ".".join(map(str, version_info))
99

1010
# The version of the attribute spec that this package

0 commit comments

Comments
 (0)