Skip to content

Commit

Permalink
Merge pull request #192 from hx2A/main
Browse files Browse the repository at this point in the history
bump version to 0.8.3a1
  • Loading branch information
hx2A authored Nov 21, 2022
2 parents e00cb50 + 7f240d4 commit a48401a
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 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.8.3.dev0
current_version = 0.8.3a1
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)a(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<build>\d+))?
Expand Down
4 changes: 2 additions & 2 deletions py5_jar/.project
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
</natures>
<filteredResources>
<filter>
<id>1599075320853</id>
<id>1664814897010</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
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 @@ -82,7 +82,7 @@
pass


__version__ = '0.8.3.dev0'
__version__ = '0.8.3a1'

_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.8.3.dev0'
__version__ = '0.8.3a1'
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 @@ -78,7 +78,7 @@ class Py5Kernel(IPythonKernel):
*_PY5_HELP_LINKS]).tag(config=True)

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


class Py5App(IPKernelApp):
Expand Down
2 changes: 1 addition & 1 deletion py5_resources/py5_module/py5_tools/py5bot/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Py5BotKernel(Py5Kernel):
shell_class = Type(Py5BotShell)

implementation = 'py5bot'
implementation_version = '0.8.3.dev0'
implementation_version = '0.8.3a1'


class Py5BotApp(IPKernelApp):
Expand Down
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 @@ -59,21 +59,21 @@
<dependency>
<groupId>py5</groupId>
<artifactId>py5-processing4</artifactId>
<version>0.8.3.dev0</version>
<version>0.8.3a1</version>
<scope>system</scope>
<systemPath>$${{jarlocation}}/core.jar</systemPath>
</dependency>
<dependency>
<groupId>py5</groupId>
<artifactId>py5-jogl</artifactId>
<version>0.8.3.dev0</version>
<version>0.8.3a1</version>
<scope>system</scope>
<systemPath>$${{jarlocation}}/jogl-all.jar</systemPath>
</dependency>
<dependency>
<groupId>py5</groupId>
<artifactId>py5</artifactId>
<version>0.8.3.dev0</version>
<version>0.8.3a1</version>
<scope>system</scope>
<systemPath>$${{jarlocation}}/py5.jar</systemPath>
</dependency>
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.md') as f:
README = f.read()

VERSION = '0.8.3.dev0'
VERSION = '0.8.3a1'

INSTALL_REQUIRES = [
'autopep8>=1.5',
Expand Down

0 comments on commit a48401a

Please sign in to comment.