Skip to content

Commit 96d80c9

Browse files
committed
bump version to 0.7.2a0
1 parent a8aab79 commit 96d80c9

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.7.2dev0
2+
current_version = 0.7.2a0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)a(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<build>\d+))?

py5_resources/py5_module/py5/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
pass
7777

7878

79-
__version__ = '0.7.2.dev0'
79+
__version__ = '0.7.2a0'
8080

8181
_PY5_USE_IMPORTED_MODE = py5_tools.get_imported_mode()
8282

py5_resources/py5_module/py5_tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
from . import translators # noqa
2828

2929

30-
__version__ = '0.7.2.dev0'
30+
__version__ = '0.7.2a0'

py5_resources/py5_module/py5_tools/kernel/kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class Py5Kernel(IPythonKernel):
7373
*_PY5_HELP_LINKS]).tag(config=True)
7474

7575
implementation = 'py5'
76-
implementation_version = '0.7.2.dev0'
76+
implementation_version = '0.7.2a0'
7777

7878

7979
class Py5App(IPKernelApp):

py5_resources/py5_module/py5_tools/py5bot/kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class Py5BotKernel(Py5Kernel):
7272
shell_class = Type(Py5BotShell)
7373

7474
implementation = 'py5bot'
75-
implementation_version = '0.7.2.dev0'
75+
implementation_version = '0.7.2a0'
7676

7777

7878
class Py5BotApp(IPKernelApp):

py5_resources/py5_module/py5_tools/utilities.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,21 @@ class Py5Utilities {
5959
<dependency>
6060
<groupId>py5</groupId>
6161
<artifactId>py5-processing4</artifactId>
62-
<version>0.7.2.dev0</version>
62+
<version>0.7.2a0</version>
6363
<scope>system</scope>
6464
<systemPath>$${{jarlocation}}/core.jar</systemPath>
6565
</dependency>
6666
<dependency>
6767
<groupId>py5</groupId>
6868
<artifactId>py5-jogl</artifactId>
69-
<version>0.7.2.dev0</version>
69+
<version>0.7.2a0</version>
7070
<scope>system</scope>
7171
<systemPath>$${{jarlocation}}/jogl-all.jar</systemPath>
7272
</dependency>
7373
<dependency>
7474
<groupId>py5</groupId>
7575
<artifactId>py5</artifactId>
76-
<version>0.7.2.dev0</version>
76+
<version>0.7.2a0</version>
7777
<scope>system</scope>
7878
<systemPath>$${{jarlocation}}/py5.jar</systemPath>
7979
</dependency>

py5_resources/py5_module/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
with open('README.md') as f:
2424
README = f.read()
2525

26-
VERSION = '0.7.2.dev0'
26+
VERSION = '0.7.2a0'
2727

2828
INSTALL_REQUIRES = [
2929
'autopep8>=1.5',

0 commit comments

Comments
 (0)