Skip to content

Commit

Permalink
Release 0.11.0 RC0
Browse files Browse the repository at this point in the history
  • Loading branch information
lresende committed Apr 28, 2020
1 parent 8dd0578 commit b35a0d8
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.11.0.dev0
current_version = 0.11.0rc0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<build>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion elyra/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = '0.11.0.dev0'
__version__ = '0.11.0rc0'
11 changes: 8 additions & 3 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
{
"version": "0.11.0-dev",
"version": "0.11.0-rc.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
"publish": {
"ignoreChanges": ["ignored-file", "*.md"],
"ignoreChanges": [
"ignored-file",
"*.md"
],
"message": "chore(release): publish"
}
},
"packages": ["packages/*"]
"packages": [
"packages/*"
]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "elyra",
"version": "0.11.0-dev",
"version": "0.11.0-rc.0",
"private": true,
"workspaces": {
"packages": [
Expand Down
12 changes: 4 additions & 8 deletions packages/application/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elyra/application",
"version": "0.11.0-dev",
"version": "0.11.0-rc.0",
"description": "JupyterLab extension - Widgets and utilities for use in elyra",
"keywords": [
"jupyter",
Expand All @@ -13,7 +13,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/elyra-ai/elyra/"
"url": "https://github.com/elyra-ai/elyra"
},
"license": "Apache-2.0",
"files": [
Expand All @@ -23,10 +23,6 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/elyra-ai/elyra"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
Expand All @@ -38,8 +34,8 @@
"@jupyterlab/application": "^2.0.2",
"@jupyterlab/apputils": "^2.0.2",
"@jupyterlab/coreutils": "^4.0.2",
"@jupyterlab/ui-components": "^2.0.2",
"@jupyterlab/services": "^5.0.2"
"@jupyterlab/services": "^5.0.2",
"@jupyterlab/ui-components": "^2.0.2"
},
"devDependencies": {
"rimraf": "~3.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/code-snippet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elyra/code-snippet-extension-experimental",
"version": "0.11.0-dev",
"version": "0.11.0-rc.0",
"description": "JupyterLab extension - Reusable code snippets for your Notebook and Python Scripts",
"keywords": [
"jupyter",
Expand Down Expand Up @@ -31,7 +31,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@elyra/application": "^0.11.0-dev",
"@elyra/application": "^0.11.0-rc.0",
"@jupyterlab/application": "^2.0.2",
"@jupyterlab/apputils": "^2.0.2",
"@jupyterlab/cells": "^2.0.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/notebook-scheduler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elyra/notebook-scheduler-extension",
"version": "0.11.0-dev",
"version": "0.11.0-rc.0",
"description": "JupyterLab extension - Enable submitting notebooks as batch jobs on external runtimes",
"keywords": [
"jupyter",
Expand Down Expand Up @@ -31,7 +31,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@elyra/application": "^0.11.0-dev",
"@elyra/application": "^0.11.0-rc.0",
"@jupyterlab/application": "^2.0.2",
"@jupyterlab/apputils": "^2.0.2",
"@jupyterlab/docregistry": "^2.0.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/pipeline-editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elyra/pipeline-editor-extension",
"version": "0.11.0-dev",
"version": "0.11.0-rc.0",
"description": "JupyterLab extension - Visual editor to build Notebook pipelines",
"keywords": [
"jupyter",
Expand Down Expand Up @@ -31,7 +31,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@elyra/application": "^0.11.0-dev",
"@elyra/application": "^0.11.0-rc.0",
"@elyra/canvas": "6.1.23",
"@jupyterlab/application": "^2.0.2",
"@jupyterlab/apputils-extension": "^2.0.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/python-runner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elyra/python-runner-extension",
"version": "0.11.0-dev",
"version": "0.11.0-rc.0",
"description": "JupyterLab extension - Run python files using a kernel runtime",
"keywords": [
"jupyter",
Expand Down Expand Up @@ -40,9 +40,9 @@
"@jupyterlab/logconsole": "^2.0.2",
"@jupyterlab/mainmenu": "^2.0.2",
"@jupyterlab/outputarea": "^2.0.2",
"@jupyterlab/ui-components": "^2.0.2",
"@jupyterlab/settingregistry": "^2.0.1",
"@jupyterlab/toc": "^3.0.0",
"@jupyterlab/ui-components": "^2.0.2",
"@lumino/messaging": "^1.3.3",
"@lumino/widgets": "^1.11.1"
},
Expand Down

0 comments on commit b35a0d8

Please sign in to comment.