Skip to content

Commit

Permalink
Bump versions for release
Browse files Browse the repository at this point in the history
0.5.1 python
0.6.1 js
1.1.0 data spec
  • Loading branch information
jasongrout committed Mar 11, 2021
1 parent b66fc9a commit d70371f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v1
with:
node-version: '13.x'
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'

- name: Install Python
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyter-widgets/jupyterlab-sidecar",
"version": "0.6.0",
"version": "0.6.1",
"description": "A sidecar output widget for JupyterLab",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletions sidecar/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Copyright (c) Project Jupyter.
# Distributed under the terms of the Modified BSD License.

version_info = (0, 5, 0)
version_info = (0, 5, 1)
__version__ = ".".join(map(str, version_info))

# The version of the attribute spec that this package
Expand All @@ -13,4 +13,4 @@
#
# Update this value when attributes are added/removed from
# your models, or serialized format changes.
EXTENSION_SPEC_VERSION = '1.0.0'
EXTENSION_SPEC_VERSION = '1.1.0'
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
* your models, or serialized format changes.
*/
export
const EXTENSION_SPEC_VERSION = '1.0.0';
const EXTENSION_SPEC_VERSION = '1.1.0';

0 comments on commit d70371f

Please sign in to comment.