Skip to content

Commit

Permalink
bump version to 0.4a1
Browse files Browse the repository at this point in the history
  • Loading branch information
hx2A committed May 23, 2021
1 parent 328beac commit e0752c3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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.4a1.dev0
current_version = 0.4a1
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)a(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<build>\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 @@ -59,7 +59,7 @@
pass


__version__ = '0.4a1.dev0'
__version__ = '0.4a1'

_PY5_USE_IMPORTED_MODE = py5_tools.imported.get_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 @@ -30,4 +30,4 @@
from . import testing # noqa


__version__ = '0.4a1.dev0'
__version__ = '0.4a1'
2 changes: 1 addition & 1 deletion py5_resources/py5_module/py5_tools/kernel/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Py5Kernel(IPythonKernel):
*_PY5_HELP_LINKS]).tag(config=True)

implementation = 'py5'
implementation_version = '0.4a1.dev0'
implementation_version = '0.4a1'


class Py5App(IPKernelApp):
Expand Down
2 changes: 1 addition & 1 deletion py5_resources/py5_module/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
with open('README.rst') as f:
README = f.read()

VERSION = '0.4a1.dev0'
VERSION = '0.4a1'

INSTALL_REQUIRES = [
'jpype1>=1.2',
Expand Down

0 comments on commit e0752c3

Please sign in to comment.