Skip to content

Commit 76a6547

Browse files
committed
Release 0.5.0
1 parent f767e58 commit 76a6547

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,18 @@ A sidecar output widget for JupyterLab
77

88
## Installation
99

10-
If you use jupyterlab:
11-
1210
```bash
1311
pip install sidecar
12+
```
13+
14+
or
15+
16+
```bash
17+
conda install sidecar
18+
```
19+
20+
If you use JupyterLab <=2:
21+
```bash
1422
jupyter labextension install @jupyter-widgets/jupyterlab-manager
1523
jupyter labextension install @jupyter-widgets/jupyterlab-sidecar
1624
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter-widgets/jupyterlab-sidecar",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "A sidecar output widget for JupyterLab",
55
"keywords": [
66
"jupyter",

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, 4, 0)
7+
version_info = (0, 5, 0)
88
__version__ = ".".join(map(str, version_info))
99

1010
# The version of the attribute spec that this package

0 commit comments

Comments
 (0)