Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 833a3e4

Browse files
committed
0.11.0-rc1
1 parent a83ff48 commit 833a3e4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

dash_html_components/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import dash as _dash
77

88
from .version import __version__
9+
npm_version = '0.11.0-rc1'
910

1011
if not hasattr(_dash, 'development'):
1112
print("Dash was not successfully imported. Make sure you don't have a file "
@@ -26,7 +27,7 @@
2627
"external_url": (
2728
"https://unpkg.com/dash-html-components@{}"
2829
"/dash_html_components/bundle.js"
29-
).format(__version__),
30+
).format(npm_version),
3031
"namespace": "dash_html_components"
3132
}]
3233

dash_html_components/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.10.1'
1+
__version__ = '0.11.0rc1'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-html-components",
3-
"version": "0.10.1",
3+
"version": "0.11.0-rc1",
44
"description": "Vanilla HTML components for Dash",
55
"main": "lib/index.js",
66
"repository": {

0 commit comments

Comments
 (0)