diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0c00cd16..71653a2d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.1.dev1 +current_version = 0.7.1a6 commit = False tag = False parse = (?P\d+)\.(?P\d+)a(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/py5_resources/py5_module/py5/__init__.py b/py5_resources/py5_module/py5/__init__.py index b4021cb4..27e3d257 100644 --- a/py5_resources/py5_module/py5/__init__.py +++ b/py5_resources/py5_module/py5/__init__.py @@ -76,7 +76,7 @@ pass -__version__ = '0.7.1.dev1' +__version__ = '0.7.1a6' _PY5_USE_IMPORTED_MODE = py5_tools.get_imported_mode() diff --git a/py5_resources/py5_module/py5_tools/__init__.py b/py5_resources/py5_module/py5_tools/__init__.py index e163a9e0..078ffc1b 100644 --- a/py5_resources/py5_module/py5_tools/__init__.py +++ b/py5_resources/py5_module/py5_tools/__init__.py @@ -27,4 +27,4 @@ from . import translators # noqa -__version__ = '0.7.1.dev1' +__version__ = '0.7.1a6' diff --git a/py5_resources/py5_module/py5_tools/kernel/kernel.py b/py5_resources/py5_module/py5_tools/kernel/kernel.py index 91777998..0bf427b1 100644 --- a/py5_resources/py5_module/py5_tools/kernel/kernel.py +++ b/py5_resources/py5_module/py5_tools/kernel/kernel.py @@ -73,7 +73,7 @@ class Py5Kernel(IPythonKernel): *_PY5_HELP_LINKS]).tag(config=True) implementation = 'py5' - implementation_version = '0.7.1.dev1' + implementation_version = '0.7.1a6' class Py5App(IPKernelApp): diff --git a/py5_resources/py5_module/py5_tools/py5bot/kernel.py b/py5_resources/py5_module/py5_tools/py5bot/kernel.py index 7ecede62..f00bddae 100644 --- a/py5_resources/py5_module/py5_tools/py5bot/kernel.py +++ b/py5_resources/py5_module/py5_tools/py5bot/kernel.py @@ -72,7 +72,7 @@ class Py5BotKernel(Py5Kernel): shell_class = Type(Py5BotShell) implementation = 'py5bot' - implementation_version = '0.7.1.dev1' + implementation_version = '0.7.1a6' class Py5BotApp(IPKernelApp): diff --git a/py5_resources/py5_module/py5_tools/utilities.py b/py5_resources/py5_module/py5_tools/utilities.py index f13b0fb4..97ca03c7 100644 --- a/py5_resources/py5_module/py5_tools/utilities.py +++ b/py5_resources/py5_module/py5_tools/utilities.py @@ -59,21 +59,21 @@ class Py5Utilities { py5 py5-processing4 - 0.7.1.dev1 + 0.7.1a6 system $${{jarlocation}}/core.jar py5 py5-jogl - 0.7.1.dev1 + 0.7.1a6 system $${{jarlocation}}/jogl-all.jar py5 py5 - 0.7.1.dev1 + 0.7.1a6 system $${{jarlocation}}/py5.jar diff --git a/py5_resources/py5_module/setup.py b/py5_resources/py5_module/setup.py index 08b152db..bccfa615 100644 --- a/py5_resources/py5_module/setup.py +++ b/py5_resources/py5_module/setup.py @@ -23,7 +23,7 @@ with open('README.rst') as f: README = f.read() -VERSION = '0.7.1.dev1' +VERSION = '0.7.1a6' INSTALL_REQUIRES = [ 'autopep8>=1.5', @@ -64,6 +64,7 @@ long_description_content_type='text/x-rst', author='Jim Schmitz', author_email='jim@ixora.io', + url='https://github.com/hx2A/py5generator', entry_points={ 'console_scripts': [ 'run_sketch = py5_tools.tools.run_sketch:main',