Skip to content

Commit

Permalink
bump version 0.9.3 -> 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
decitre committed Jul 5, 2024
1 parent 8ae6baa commit ff31c56
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ To update the package version, use `bumpver`. For instance:
```
try:
import piplite
- await piplite.install(["ipywidgets==8.1.0", "ipyleaflet==0.17.3", "emfs:here_search_demo-0.9.3-py3-none-any.whl"], keep_going=True)
+ await piplite.install(["ipywidgets==8.1.0", "ipyleaflet==0.17.3", "emfs:here_search_demo-0.9.3-py3-none-any.whl"], keep_going=True)
- await piplite.install(["ipywidgets==8.1.0", "ipyleaflet==0.17.3", "emfs:here_search_demo-0.9.4-py3-none-any.whl"], keep_going=True)
+ await piplite.install(["ipywidgets==8.1.0", "ipyleaflet==0.17.3", "emfs:here_search_demo-0.9.4-py3-none-any.whl"], keep_going=True)
except ImportError:
pass
```
Expand Down Expand Up @@ -89,7 +89,7 @@ For the Pyodide kernels to be able to use certain packages, those need to be ins
```
try:
import piplite
await piplite.install(["ipywidgets==8.1.0", "ipyleaflet==0.17.3", "emfs:here_search_demo-0.9.3-py3-none-any.whl"], keep_going=True)
await piplite.install(["ipywidgets==8.1.0", "ipyleaflet==0.17.3", "emfs:here_search_demo-0.9.4-py3-none-any.whl"], keep_going=True)
except ImportError:
pass
```
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "here-search-demo"
version = "0.9.3"
version = "0.9.4"
description = "HERE Geocoding and Search demo and widgets"
readme = "README.md"
authors = [ {name = "HERE Global B.V. and its affiliate(s)", email = "[email protected]"} ]
Expand Down Expand Up @@ -58,7 +58,7 @@ include-package-data = true
where = ["src"]

[bumpver]
current_version = "0.9.3"
current_version = "0.9.4"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion src/here_search/demo/notebooks/demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"source": [
"try:\n",
" import piplite\n",
" await piplite.install([\"ipywidgets==8.1.3\", \"ipyleaflet==0.19.1\", \"emfs:here_search_demo-0.9.3-py3-none-any.whl\"], keep_going=True)\n",
" await piplite.install([\"ipywidgets==8.1.3\", \"ipyleaflet==0.19.1\", \"emfs:here_search_demo-0.9.4-py3-none-any.whl\"], keep_going=True)\n",
"except ImportError:\n",
" pass"
]
Expand Down
2 changes: 1 addition & 1 deletion src/here_search/demo/notebooks/obm_1_api.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"source": [
"try:\n",
" import piplite\n",
" await piplite.install([\"ipywidgets==8.1.3\", \"ipyleaflet==0.19.1\", \"emfs:here_search_demo-0.9.3-py3-none-any.whl\"], keep_going=True)\n",
" await piplite.install([\"ipywidgets==8.1.3\", \"ipyleaflet==0.19.1\", \"emfs:here_search_demo-0.9.4-py3-none-any.whl\"], keep_going=True)\n",
"except ImportError:\n",
" pass"
]
Expand Down
2 changes: 1 addition & 1 deletion src/here_search/demo/notebooks/obm_2_api.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"source": [
"try:\n",
" import piplite\n",
" await piplite.install([\"ipywidgets==8.1.3\", \"ipyleaflet==0.19.1\", \"emfs:here_search_demo-0.9.3-py3-none-any.whl\"], keep_going=True)\n",
" await piplite.install([\"ipywidgets==8.1.3\", \"ipyleaflet==0.19.1\", \"emfs:here_search_demo-0.9.4-py3-none-any.whl\"], keep_going=True)\n",
"except ImportError:\n",
" pass"
]
Expand Down
2 changes: 1 addition & 1 deletion src/here_search/demo/notebooks/obm_3_widget.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"source": [
"try:\n",
" import piplite\n",
" await piplite.install([\"ipywidgets==8.1.3\", \"ipyleaflet==0.19.1\", \"emfs:here_search_demo-0.9.3-py3-none-any.whl\"], keep_going=True)\n",
" await piplite.install([\"ipywidgets==8.1.3\", \"ipyleaflet==0.19.1\", \"emfs:here_search_demo-0.9.4-py3-none-any.whl\"], keep_going=True)\n",
"except ImportError:\n",
" pass"
]
Expand Down

0 comments on commit ff31c56

Please sign in to comment.