Skip to content
This repository was archived by the owner on Jun 28, 2022. It is now read-only.

Commit 713c290

Browse files
committed
Latest release: 2.2.0
1 parent 3e8e14a commit 713c290

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.2.0-rc4
2+
current_version = 2.2.0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\-{0,1}(?P<release>\D*)(?P<build>\d*)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This package allows to connect to a remote Databricks cluster from a locally run
1414
```bash
1515
(base)$ conda create -n dj python=3.8 # you might need to add "pywin32" if you are on Windows
1616
(base)$ conda activate dj
17-
(dj)$ pip install --upgrade databrickslabs-jupyterlab[cli]==2.2.0-rc4
17+
(dj)$ pip install --upgrade databrickslabs-jupyterlab[cli]==2.2.0
1818
```
1919

2020
The following packages get installed:
@@ -83,7 +83,7 @@ This package allows to connect to a remote Databricks cluster from a locally run
8383

8484
## 4 Running with docker
8585

86-
A docker image ready for working with *Jupyterlab Integration* is available from Dockerhub. It is recommended to prepare your environment by pulling the repository: `docker pull bwalter42/databrickslabs_jupyterlab:2.2.0-rc4`
86+
A docker image ready for working with *Jupyterlab Integration* is available from Dockerhub. It is recommended to prepare your environment by pulling the repository: `docker pull bwalter42/databrickslabs_jupyterlab:2.2.0`
8787

8888
There are two scripts in the folder `docker`:
8989

@@ -103,7 +103,7 @@ Alternatively, under macOS and Linux one can use the following bash functions:
103103
-v $HOME/.ssh/:/home/dbuser/.ssh \
104104
-v $HOME/.databrickscfg:/home/dbuser/.databrickscfg \
105105
-v $(pwd):/home/dbuser/notebooks \
106-
bwalter42/databrickslabs_jupyterlab:2.2.0-rc4 /opt/conda/bin/databrickslabs-jupyterlab $@
106+
bwalter42/databrickslabs_jupyterlab:2.2.0 /opt/conda/bin/databrickslabs-jupyterlab $@
107107
}
108108
```
109109

@@ -118,7 +118,7 @@ Alternatively, under macOS and Linux one can use the following bash functions:
118118
-v $HOME/.ssh/:/home/dbuser/.ssh \
119119
-v $HOME/.databrickscfg:/home/dbuser/.databrickscfg \
120120
-v $(pwd):/home/dbuser/notebooks \
121-
bwalter42/databrickslabs_jupyterlab:2.2.0-rc4 /opt/conda/bin/jupyter $@
121+
bwalter42/databrickslabs_jupyterlab:2.2.0 /opt/conda/bin/jupyter $@
122122
}
123123
```
124124

@@ -166,7 +166,7 @@ in both commands.
166166
```bash
167167
(base)$ conda create -n dj python=3.8 # you might need to add "pywin32" if you are on Windows
168168
(base)$ conda activate dj
169-
(dj)$ pip install --upgrade databrickslabs-jupyterlab[cli]==2.2.0-rc4
169+
(dj)$ pip install --upgrade databrickslabs-jupyterlab[cli]==2.2.0
170170
```
171171

172172
The prefix `(db-jlab)$` for all command examples in this document assumes that the conda enviromnent `db-jlab` is activated.

databrickslabs_jupyterlab/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ def get_version(version):
1212
return VersionInfo(major, minor, patch, release, build)
1313

1414

15-
__version__ = "2.2.0-rc4" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
15+
__version__ = "2.2.0" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
1616
__version_info__ = get_version(__version__)

docker/dk-dj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ docker run -it --rm \
66
-v $HOME/.ssh/:/home/dbuser/.ssh \
77
-v $HOME/.databrickscfg:/home/dbuser/.databrickscfg \
88
-v $(pwd):/home/dbuser/notebooks \
9-
bwalter42/databrickslabs_jupyterlab:2.2.0-rc4 \
9+
bwalter42/databrickslabs_jupyterlab:2.2.0 \
1010
/opt/conda/bin/databrickslabs-jupyterlab $@

docker/dk-dj.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ docker run -it --rm ^
44
-v %HOMEDRIVE%%HOMEPATH%/.ssh/:/home/dbuser/.ssh ^
55
-v %HOMEDRIVE%%HOMEPATH%/.databrickscfg:/home/dbuser/.databrickscfg ^
66
-v %CD%:/home/dbuser/notebooks ^
7-
bwalter42/databrickslabs_jupyterlab:2.2.0-rc4 ^
7+
bwalter42/databrickslabs_jupyterlab:2.2.0 ^
88
/opt/conda/bin/databrickslabs-jupyterlab %*

docker/dk-jupyter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ docker run -it --rm \
66
-v $HOME/.ssh/:/home/dbuser/.ssh \
77
-v $HOME/.databrickscfg:/home/dbuser/.databrickscfg \
88
-v $(pwd):/home/dbuser/notebooks \
9-
bwalter42/databrickslabs_jupyterlab:2.2.0-rc4 \
9+
bwalter42/databrickslabs_jupyterlab:2.2.0 \
1010
/opt/conda/bin/jupyter $@

docker/dk-jupyter.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ docker run -it --rm ^
44
-v %HOMEDRIVE%%HOMEPATH%/.ssh/:/home/dbuser/.ssh ^
55
-v %HOMEDRIVE%%HOMEPATH%/.databrickscfg:/home/dbuser/.databrickscfg ^
66
-v %CD%:/home/dbuser/notebooks ^
7-
bwalter42/databrickslabs_jupyterlab:2.2.0-rc4 ^
7+
bwalter42/databrickslabs_jupyterlab:2.2.0 ^
88
/opt/conda/bin/jupyter %*

docker/image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM continuumio/miniconda3
22

33
RUN . /opt/conda/bin/activate base && \
4-
/opt/conda/bin/pip install --upgrade databrickslabs-jupyterlab==2.2.0-rc4[cli] && \
4+
/opt/conda/bin/pip install --upgrade databrickslabs-jupyterlab==2.2.0[cli] && \
55
echo "cleaning" && \
66
npm install -g yarn && \
77
yarn cache clean && \

docs/v2/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
Config dir: /opt/miniconda/envs/dj/etc/jupyter
3131
databrickslabs_jupyterlab enabled
3232
- Validating databrickslabs_jupyterlab...
33-
databrickslabs_jupyterlab 2.2.0-rc4 OK
33+
databrickslabs_jupyterlab 2.2.0 OK
3434
jupyterlab enabled
3535
- Validating jupyterlab...
3636
jupyterlab 3.0.14 OK
@@ -52,7 +52,7 @@
5252
Config dir: /opt/miniconda/envs/dj/etc/jupyter
5353
databrickslabs_jupyterlab enabled
5454
- Validating databrickslabs_jupyterlab...
55-
databrickslabs_jupyterlab 2.2.0-rc4 OK
55+
databrickslabs_jupyterlab 2.2.0 OK
5656
jupyterlab enabled
5757
- Validating jupyterlab...
5858
jupyterlab 3.0.14 OK

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def notebook_version():
4848

4949
setup(
5050
name="databrickslabs_jupyterlab",
51-
version="2.2.0-rc4",
51+
version="2.2.0",
5252
author="Bernhard Walter",
5353
author_email="bernhard.walter@databricks.com",
5454
url="https://github.com/databrickslabs/Jupyterlab-Integration",

0 commit comments

Comments
 (0)