Skip to content

Commit

Permalink
Release 0.1.0a0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Jul 19, 2023
1 parent 2773bbf commit acaa70e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bqplot_gl/_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
"""

module_name = "bqplot-gl"
module_version = "^0.1.0"
module_version = "^0.1.0-alpha.0"
2 changes: 1 addition & 1 deletion bqplot_gl/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# Copyright (c) The bqplot Development Team.
# Distributed under the terms of the Modified BSD License.

__version__ = "0.1.0"
__version__ = "0.1.0a0"
10 changes: 5 additions & 5 deletions bqplot_gl/marks.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from bqplot import Scatter, Lines

from ._version import __version__
from ._frontend import module_version


__all__ = ['ScatterGL', 'LinesGL']
Expand All @@ -16,8 +16,8 @@ class ScatterGL(Scatter):
_model_name = Unicode('ScatterGLModel').tag(sync=True)
_model_module = Unicode('bqplot-gl').tag(sync=True)
_view_module = Unicode('bqplot-gl').tag(sync=True)
_view_module_version = Unicode('^' + __version__).tag(sync=True)
_model_module_version = Unicode('^' + __version__).tag(sync=True)
_view_module_version = Unicode(module_version).tag(sync=True)
_model_module_version = Unicode(module_version).tag(sync=True)


@register
Expand All @@ -26,5 +26,5 @@ class LinesGL(Lines):
_model_name = Unicode('LinesGLModel').tag(sync=True)
_view_module = Unicode('bqplot-gl').tag(sync=True)
_model_module = Unicode('bqplot-gl').tag(sync=True)
_view_module_version = Unicode('^' + __version__).tag(sync=True)
_model_module_version = Unicode('^' + __version__).tag(sync=True)
_view_module_version = Unicode(module_version).tag(sync=True)
_model_module_version = Unicode(module_version).tag(sync=True)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bqplot-gl",
"version": "0.1.0",
"version": "0.1.0-alpha.0",
"description": "Plugin to bqplot powered by WebGL.",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ classifiers = [
dependencies = [
"bqplot>=0.13.0a0,<0.14",
]
version = "0.1.0"
version = "0.1.0a0"

[project.license]
file = "LICENSE"
Expand Down Expand Up @@ -85,7 +85,7 @@ field = [
]

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

[tool.tbump.git]
Expand Down

0 comments on commit acaa70e

Please sign in to comment.