Skip to content

Commit acaa70e

Browse files
committed
Release 0.1.0a0
1 parent 2773bbf commit acaa70e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

bqplot_gl/_frontend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
"""
1010

1111
module_name = "bqplot-gl"
12-
module_version = "^0.1.0"
12+
module_version = "^0.1.0-alpha.0"

bqplot_gl/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# Copyright (c) The bqplot Development Team.
55
# Distributed under the terms of the Modified BSD License.
66

7-
__version__ = "0.1.0"
7+
__version__ = "0.1.0a0"

bqplot_gl/marks.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from bqplot import Scatter, Lines
66

7-
from ._version import __version__
7+
from ._frontend import module_version
88

99

1010
__all__ = ['ScatterGL', 'LinesGL']
@@ -16,8 +16,8 @@ class ScatterGL(Scatter):
1616
_model_name = Unicode('ScatterGLModel').tag(sync=True)
1717
_model_module = Unicode('bqplot-gl').tag(sync=True)
1818
_view_module = Unicode('bqplot-gl').tag(sync=True)
19-
_view_module_version = Unicode('^' + __version__).tag(sync=True)
20-
_model_module_version = Unicode('^' + __version__).tag(sync=True)
19+
_view_module_version = Unicode(module_version).tag(sync=True)
20+
_model_module_version = Unicode(module_version).tag(sync=True)
2121

2222

2323
@register
@@ -26,5 +26,5 @@ class LinesGL(Lines):
2626
_model_name = Unicode('LinesGLModel').tag(sync=True)
2727
_view_module = Unicode('bqplot-gl').tag(sync=True)
2828
_model_module = Unicode('bqplot-gl').tag(sync=True)
29-
_view_module_version = Unicode('^' + __version__).tag(sync=True)
30-
_model_module_version = Unicode('^' + __version__).tag(sync=True)
29+
_view_module_version = Unicode(module_version).tag(sync=True)
30+
_model_module_version = Unicode(module_version).tag(sync=True)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bqplot-gl",
3-
"version": "0.1.0",
3+
"version": "0.1.0-alpha.0",
44
"description": "Plugin to bqplot powered by WebGL.",
55
"keywords": [
66
"jupyter",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ classifiers = [
3737
dependencies = [
3838
"bqplot>=0.13.0a0,<0.14",
3939
]
40-
version = "0.1.0"
40+
version = "0.1.0a0"
4141

4242
[project.license]
4343
file = "LICENSE"
@@ -85,7 +85,7 @@ field = [
8585
]
8686

8787
[tool.tbump.version]
88-
current = "0.1.0"
88+
current = "0.1.0a0"
8989
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"
9090

9191
[tool.tbump.git]

0 commit comments

Comments
 (0)