Skip to content

Commit 0e99e19

Browse files
committed
Bump version
1 parent 5a78742 commit 0e99e19

File tree

8 files changed

+8
-9
lines changed

8 files changed

+8
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,9 @@ Run jupyter as docker container locally. Replace `/examples` with the path to yo
175175
Tag `latest` might not always be up-to-date since docker is primarily used for binder
176176

177177
```
178-
docker pull jvail/plantgl-jupyter:1.0.5
178+
docker pull jvail/plantgl-jupyter:1.1.0
179179
docker run --rm \
180180
-p 8888:8888 \
181-
-v $PWD/examples:/home/jovyan/work jvail/plantgl-jupyter:1.0.6 \
181+
-v $PWD/examples:/home/jovyan/work jvail/plantgl-jupyter:1.1.0 \
182182
jupyter lab
183183
```

binder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM jvail/plantgl-jupyter:1.0.6
1+
FROM jvail/plantgl-jupyter:1.1.0
22

33
ARG NB_USER=jovyan
44
ARG NB_UID=1000

docker/conda.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM jupyter/base-notebook:lab-3.0.12
1+
FROM jupyter/base-notebook:lab-3.0.16
22
USER root
33
SHELL ["/bin/bash", "-c"]
44
RUN apt-get update && apt-get install --no-upgrade --no-install-recommends -y libgl1-mesa-dev && \

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pgljupyter",
3-
"version": "1.0.6",
3+
"version": "1.1.0",
44
"description": "PlantGL jupyter widget",
55
"keywords": [
66
"jupyter",

pgljupyter/_frontend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"""
44

55
module_name = "pgljupyter"
6-
module_version = "^1.0.6"
6+
module_version = "^1.1.0"

pgljupyter/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (1, 0, 6) # (0, 1, 16, '-devx')
1+
version_info = (1, 1, 0) # (0, 1, 16, '-devx')
22
__version__ = ".".join(map(str, version_info))

src/widgets/widgets.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,6 @@ export class PGLWidgetView extends DOMWidgetView {
272272
if (capture) {
273273
this.mediaRecorder.start();
274274
} else {
275-
debugger
276275
this.mediaRecorder.stop();
277276
}
278277
},

0 commit comments

Comments
 (0)