Skip to content

Commit cd2f0b2

Browse files
committed
jupyter_bokeh 2.0.1
1 parent 9c151bf commit cd2f0b2

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

DEVGUIDE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
## Update package version
44

5-
| File | Entry | Content |
6-
| --------------------------- | ----------------- | -------- |
7-
| `jupyter_bokeh/__init__.py` | `__version__` | `2.0.0` |
8-
| `jupyter_bokeh/widgets.py` | `_module_version` | `^2.0.0` |
9-
| `package.json` | `version` | `2.0.0` |
10-
| `setup.py` | `version` | `2.0.0` |
5+
| File | Entry | Content |
6+
| --------------------------- | ----------------- | -------------- |
7+
| `jupyter_bokeh/__init__.py` | `__version__` | `2.0.1dev2` |
8+
| `jupyter_bokeh/widgets.py` | `_module_version` | `^2.0.1-dev.2` |
9+
| `package.json` | `version` | `2.0.1-dev.2` |
10+
| `setup.py` | `version` | `2.0.1dev2` |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ installation may refer to the below table.
5252
| 0.34.x | 0.6.2 |
5353
| 0.35.x | 0.6.3 |
5454
| 1.0.x | 1.0.0 |
55-
| 2.0.x | 1.0.0 |
55+
| 2.0.x | 2.0.0 |
5656

5757
## Development
5858

jupyter_bokeh/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
from .widgets import BokehModel
44

5-
__version__ = "2.0.0"
5+
__version__ = "2.0.1"

jupyter_bokeh/widgets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
)
4040

4141
_module_name = "@bokeh/jupyter_bokeh"
42-
_module_version = "^2.0.0"
42+
_module_version = "^2.0.1"
4343

4444
#-----------------------------------------------------------------------------
4545
# General API

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": "@bokeh/jupyter_bokeh",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "A Jupyter extension for rendering Bokeh content.",
55
"author": "Bokeh Team <[email protected]>",
66
"keywords": [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def run(self):
2121

2222
install_requires = [
2323
"bokeh >=2.0.0",
24-
"ipywidgets >=7.0.0",
24+
"ipywidgets >=7.5.0",
2525
]
2626

2727
setup_args = dict(

0 commit comments

Comments
 (0)