From 29c7ba24f401e3c3c269ac38317c1c131455102d Mon Sep 17 00:00:00 2001 From: Jim Date: Mon, 29 Aug 2022 06:23:16 -0400 Subject: [PATCH] bump version to 0.8.2a1 --- .bumpversion.cfg | 2 +- py5_resources/py5_module/py5/__init__.py | 2 +- py5_resources/py5_module/py5_tools/__init__.py | 2 +- py5_resources/py5_module/py5_tools/kernel/kernel.py | 2 +- py5_resources/py5_module/py5_tools/py5bot/kernel.py | 2 +- py5_resources/py5_module/py5_tools/utilities.py | 6 +++--- py5_resources/py5_module/setup.py | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 21f18ffe..f81d9f12 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.2.dev0 +current_version = 0.8.2a1 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 38f3135a..38337720 100644 --- a/py5_resources/py5_module/py5/__init__.py +++ b/py5_resources/py5_module/py5/__init__.py @@ -82,7 +82,7 @@ pass -__version__ = '0.8.2.dev0' +__version__ = '0.8.2a1' _PY5_USE_IMPORTED_MODE = py5_tools.get_imported_mode() py5_tools._lock_imported_mode() diff --git a/py5_resources/py5_module/py5_tools/__init__.py b/py5_resources/py5_module/py5_tools/__init__.py index 0ff3ff07..5d802bd1 100644 --- a/py5_resources/py5_module/py5_tools/__init__.py +++ b/py5_resources/py5_module/py5_tools/__init__.py @@ -28,4 +28,4 @@ from . import translators # noqa -__version__ = '0.8.2.dev0' +__version__ = '0.8.2a1' diff --git a/py5_resources/py5_module/py5_tools/kernel/kernel.py b/py5_resources/py5_module/py5_tools/kernel/kernel.py index 4ceef218..19c94e2d 100644 --- a/py5_resources/py5_module/py5_tools/kernel/kernel.py +++ b/py5_resources/py5_module/py5_tools/kernel/kernel.py @@ -78,7 +78,7 @@ class Py5Kernel(IPythonKernel): *_PY5_HELP_LINKS]).tag(config=True) implementation = 'py5' - implementation_version = '0.8.2.dev0' + implementation_version = '0.8.2a1' 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 de99ab6d..87e391fc 100644 --- a/py5_resources/py5_module/py5_tools/py5bot/kernel.py +++ b/py5_resources/py5_module/py5_tools/py5bot/kernel.py @@ -71,7 +71,7 @@ class Py5BotKernel(Py5Kernel): shell_class = Type(Py5BotShell) implementation = 'py5bot' - implementation_version = '0.8.2.dev0' + implementation_version = '0.8.2a1' class Py5BotApp(IPKernelApp): diff --git a/py5_resources/py5_module/py5_tools/utilities.py b/py5_resources/py5_module/py5_tools/utilities.py index 7afa3016..5233b1a6 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.8.2.dev0 + 0.8.2a1 system $${{jarlocation}}/core.jar py5 py5-jogl - 0.8.2.dev0 + 0.8.2a1 system $${{jarlocation}}/jogl-all.jar py5 py5 - 0.8.2.dev0 + 0.8.2a1 system $${{jarlocation}}/py5.jar diff --git a/py5_resources/py5_module/setup.py b/py5_resources/py5_module/setup.py index 103b69e1..eead209a 100644 --- a/py5_resources/py5_module/setup.py +++ b/py5_resources/py5_module/setup.py @@ -23,7 +23,7 @@ with open('README.md') as f: README = f.read() -VERSION = '0.8.2.dev0' +VERSION = '0.8.2a1' INSTALL_REQUIRES = [ 'autopep8>=1.5',