Skip to content

Commit 6d336f2

Browse files
committed
Prepare for next development iteration
1 parent 00913fc commit 6d336f2

File tree

16 files changed

+37
-36
lines changed

16 files changed

+37
-36
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0rc0
2+
current_version = 1.0.0.dev0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<build>\d+))?

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SHELL:=/bin/bash
2323
GIT_VERSION:=0.20.0
2424
TOC_VERSION:=4.0.0
2525

26-
TAG:=1.0.0rc0
26+
TAG:=dev
2727
IMAGE=elyra/elyra:$(TAG)
2828

2929
# Contains the set of commands required to be used by elyra

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Should output:
8181
config dir: /usr/local/etc/jupyter
8282
elyra enabled
8383
- Validating...
84-
elyra 1.0.0rc0 OK
84+
elyra <VERSION> OK
8585
jupyterlab enabled
8686
- Validating...
8787
jupyterlab 2.1.5 OK
@@ -99,11 +99,11 @@ Should output:
9999
```
100100
Known labextensions:
101101
app dir: /.../share/jupyter/lab
102-
@elyra/code-snippet-extension v1.0.0-rc.0 enabled OK*
103-
@elyra/metadata-editor-extension v1.0.0-rc.0 enabled OK*
104-
@elyra/pipeline-editor-extension v1.0.0-rc.0 enabled OK*
105-
@elyra/python-editor-extension v1.0.0-rc.0 enabled OK*
106-
@elyra/theme-extension v1.0.0-rc.0 enabled OK*
102+
@elyra/code-snippet-extension <VERSION> enabled OK*
103+
@elyra/metadata-editor-extension <VERSION> enabled OK*
104+
@elyra/pipeline-editor-extension <VERSION> enabled OK*
105+
@elyra/python-editor-extension <VERSION> enabled OK*
106+
@elyra/theme-extension <VERSION> enabled OK*
107107
@jupyterlab/git v0.20.0 enabled OK
108108
@jupyterlab/toc v4.0.0 enabled OK
109109
nbdime-jupyterlab v2.0.0 enabled OK

docs/source/getting_started/installation.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Should output:
4545
config dir: /usr/local/etc/jupyter
4646
elyra enabled
4747
- Validating...
48-
elyra 1.0.0rc0 OK
48+
elyra <VERSION> OK
4949
jupyterlab enabled
5050
- Validating...
5151
jupyterlab 2.1.5 OK
@@ -66,10 +66,10 @@ Should output:
6666
```
6767
Known labextensions:
6868
app dir: /.../share/jupyter/lab
69-
@elyra/code-snippet-extension v1.0.0-rc.0 enabled OK*
70-
@elyra/metadata-editor-extension v1.0.0-rc.0 enabled OK*
71-
@elyra/pipeline-editor-extension v1.0.0-rc.0 enabled OK*
72-
@elyra/python-editor-extension v1.0.0-rc.0 enabled OK*
69+
@elyra/code-snippet-extension <VERSION> enabled OK*
70+
@elyra/metadata-editor-extension <VERSION> enabled OK*
71+
@elyra/pipeline-editor-extension <VERSION> enabled OK*
72+
@elyra/python-editor-extension <VERSION> enabled OK*
7373
@elyra/theme-extension <VERSION> enabled OK*
7474
@jupyterlab/git v0.20.0 enabled OK
7575
@jupyterlab/toc v4.0.0 enabled OK

docs/source/recipes/deploying-elyra-in-a-jupyterhub-endvironment.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ singleuser:
4242
image:
4343
name: elyra/elyra
4444
# change to a specific release version as appropriate
45-
tag: 1.0.0rc0
45+
tag: <VERSION>
4646
# disable this in a production environment
4747
pullPolicy: "Always"
4848
storage:
@@ -94,7 +94,7 @@ singleuser:
9494
image:
9595
name: elyra/elyra
9696
# change to a specific release version as appropriated
97-
tag: 1.0.0rc0
97+
tag: <VERSION>
9898
# disable this in a production environment
9999
pullPolicy: "Always"
100100
storage:
@@ -112,8 +112,9 @@ required to run elyra, and that could be used to customize your environment with
112112
packages required by your workloads, or any other customizations needed.
113113
114114
```dockerfile
115-
FROM elyra/elyra:1.0.0rc0
115+
FROM elyra/elyra:<VERSION>
116116

117117
...
118118

119+
119120
```

elyra/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = '1.0.0rc0'
16+
__version__ = '1.0.0.dev0'

etc/docker/elyra/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ RUN python -m pip install --upgrade pip && \
3939
npm install -g yarn && \
4040
npm install -g npm && \
4141
cd /tmp && git clone https://github.com/elyra-ai/elyra.git && \
42-
cd /tmp/elyra && git checkout tags/v1.0.0rc0 -b v1.0.0rc0 && make install
42+
cd /tmp/elyra && make install
4343

4444
WORKDIR /home/jovyan/work
4545

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-rc.0",
2+
"version": "1.0.0-dev",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"command": {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elyra",
3-
"version": "v1.0.0-rc.0",
3+
"version": "1.0.0-dev",
44
"private": true,
55
"workspaces": {
66
"packages": [

packages/application/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elyra/application",
3-
"version": "1.0.0-rc.0",
3+
"version": "1.0.0-dev",
44
"description": "JupyterLab - Utilities for use in elyra",
55
"keywords": [
66
"jupyter",
@@ -30,7 +30,7 @@
3030
"watch": "tsc -w"
3131
},
3232
"dependencies": {
33-
"@elyra/ui-components": "^1.0.0-rc.0",
33+
"@elyra/ui-components": "^1.0.0-dev",
3434
"@jupyterlab/apputils": "^2.0.2",
3535
"@jupyterlab/coreutils": "^4.0.2",
3636
"@jupyterlab/services": "^5.0.2",

packages/code-snippet/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elyra/code-snippet-extension",
3-
"version": "1.0.0-rc.0",
3+
"version": "1.0.0-dev",
44
"description": "JupyterLab extension - Reusable code snippets for your Notebook and Python Scripts",
55
"keywords": [
66
"jupyter",
@@ -31,8 +31,8 @@
3131
"watch": "tsc -w"
3232
},
3333
"dependencies": {
34-
"@elyra/application": "^1.0.0-rc.0",
35-
"@elyra/ui-components": "^1.0.0-rc.0",
34+
"@elyra/application": "^1.0.0-dev",
35+
"@elyra/ui-components": "^1.0.0-dev",
3636
"@jupyterlab/application": "^2.0.2",
3737
"@jupyterlab/apputils": "^2.0.2",
3838
"@jupyterlab/cells": "^2.0.2",

packages/metadata-editor/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elyra/metadata-editor-extension",
3-
"version": "1.0.0-rc.0",
3+
"version": "1.0.0-beta.1",
44
"description": "JupyterLab extension - Edit metadata",
55
"keywords": [
66
"jupyter",
@@ -32,8 +32,8 @@
3232
},
3333
"dependencies": {
3434
"@blueprintjs/core": "^3.22.2",
35-
"@elyra/application": "^1.0.0-rc.0",
36-
"@elyra/ui-components": "^1.0.0-rc.0",
35+
"@elyra/application": "^1.0.0-beta.1",
36+
"@elyra/ui-components": "^1.0.0-beta.1",
3737
"@jupyterlab/application": "^2.0.2",
3838
"@jupyterlab/apputils": "^2.0.2",
3939
"@jupyterlab/codeeditor": "^2.0.2",

packages/pipeline-editor/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elyra/pipeline-editor-extension",
3-
"version": "1.0.0-rc.0",
3+
"version": "1.0.0-dev",
44
"description": "JupyterLab extension - Visual editor to build Notebook pipelines",
55
"keywords": [
66
"jupyter",
@@ -31,9 +31,9 @@
3131
"watch": "tsc -w"
3232
},
3333
"dependencies": {
34-
"@elyra/application": "^1.0.0-rc.0",
34+
"@elyra/application": "^1.0.0-dev",
3535
"@elyra/canvas": "6.1.23",
36-
"@elyra/ui-components": "^1.0.0-rc.0",
36+
"@elyra/ui-components": "^1.0.0-dev",
3737
"@jupyterlab/application": "^2.0.2",
3838
"@jupyterlab/apputils": "^2.0.2",
3939
"@jupyterlab/docregistry": "^2.0.2",

packages/python-editor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elyra/python-editor-extension",
3-
"version": "1.0.0-rc.0",
3+
"version": "1.0.0-dev",
44
"description": "JupyterLab extension - Run python files using a kernel runtime",
55
"keywords": [
66
"jupyter",

packages/theme/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elyra/theme-extension",
3-
"version": "1.0.0-rc.0",
3+
"version": "1.0.0-dev",
44
"description": "JupyterLab extension - Elyra theme",
55
"keywords": [
66
"jupyter",
@@ -31,8 +31,8 @@
3131
"watch": "tsc -w"
3232
},
3333
"dependencies": {
34-
"@elyra/application": "^1.0.0-rc.0",
35-
"@elyra/ui-components": "^1.0.0-rc.0",
34+
"@elyra/application": "^1.0.0-dev",
35+
"@elyra/ui-components": "^1.0.0-dev",
3636
"@jupyterlab/application": "^2.0.2",
3737
"@jupyterlab/mainmenu": "^2.0.2"
3838
},

packages/ui-components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elyra/ui-components",
3-
"version": "1.0.0-rc.0",
3+
"version": "1.0.0-dev",
44
"description": "JupyterLab - UI components for use in elyra",
55
"keywords": [
66
"jupyter",

0 commit comments

Comments
 (0)