Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jvail committed Sep 17, 2021
1 parent fdcfc89 commit 7689abe
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,9 @@ Run jupyter as docker container locally. Replace `/examples` with the path to yo
Tag `latest` might not always be up-to-date since docker is primarily used for binder

```
docker pull jvail/plantgl-jupyter:1.1.0
docker pull jvail/plantgl-jupyter:1.2.0
docker run --rm \
-p 8888:8888 \
-v $PWD/examples:/home/jovyan/work jvail/plantgl-jupyter:1.1.0 \
-v $PWD/examples:/home/jovyan/work jvail/plantgl-jupyter:1.2.0 \
jupyter lab
```
2 changes: 1 addition & 1 deletion binder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM jvail/plantgl-jupyter:1.1.0
FROM jvail/plantgl-jupyter:1.2.0

ARG NB_USER=jovyan
ARG NB_UID=1000
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pgljupyter",
"version": "1.1.0",
"version": "1.2.0",
"description": "PlantGL jupyter widget",
"keywords": [
"jupyter",
Expand Down
2 changes: 1 addition & 1 deletion pgljupyter/_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"""

module_name = "pgljupyter"
module_version = "^1.1.0"
module_version = "^1.2.0"
2 changes: 1 addition & 1 deletion pgljupyter/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (1, 1, 0) # (0, 1, 16, '-devx')
version_info = (1, 2, 0) # (0, 1, 16, '-devx')
__version__ = ".".join(map(str, version_info))

0 comments on commit 7689abe

Please sign in to comment.