Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.0.dev0
current_version = 0.9.0a0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<channel>a|b|rc|\.dev)(?P<release>\d+)
Expand Down
2 changes: 1 addition & 1 deletion py5_resources/py5_module/py5/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
pass


__version__ = '0.9.0.dev0'
__version__ = '0.9.0a0'

_PY5_USE_IMPORTED_MODE = py5_tools.get_imported_mode()
py5_tools._lock_imported_mode()
Expand Down
2 changes: 1 addition & 1 deletion py5_resources/py5_module/py5_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
from . import translators # noqa


__version__ = '0.9.0.dev0'
__version__ = '0.9.0a0'
6 changes: 3 additions & 3 deletions py5_resources/py5_module/py5_tools/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,21 +62,21 @@
<dependency>
<groupId>py5</groupId>
<artifactId>py5-processing4</artifactId>
<version>0.9.0.dev0</version>
<version>0.9.0a0</version>
<scope>system</scope>
<systemPath>$${{jarlocation}}/core.jar</systemPath>
</dependency>
<dependency>
<groupId>py5</groupId>
<artifactId>py5-jogl</artifactId>
<version>0.9.0.dev0</version>
<version>0.9.0a0</version>
<scope>system</scope>
<systemPath>$${{jarlocation}}/jogl-all.jar</systemPath>
</dependency>
<dependency>
<groupId>py5</groupId>
<artifactId>py5</artifactId>
<version>0.9.0.dev0</version>
<version>0.9.0a0</version>
<scope>system</scope>
<systemPath>$${{jarlocation}}/py5.jar</systemPath>
</dependency>
Expand Down