Skip to content

Commit 07626b1

Browse files
authored
Merge pull request #488 from hx2A/bumpversion0102a0
bump version to 0.10.2a0
2 parents d3ff6fd + 8fda279 commit 07626b1

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
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.10.2.dev4
2+
current_version = 0.10.2a0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<channel>a|b|rc|\.dev)(?P<release>\d+)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[![Downloads](https://pepy.tech/badge/py5/week)](https://pepy.tech/project/py5)
88

9-
py5 is a new version of [Processing][processing] for Python 3.8+. The goal of py5 is to create a version of Processing that is [integrated into the Python ecosystem](https://py5coding.org/integrations/python_ecosystem_integrations.html). Built into the library are thoughtful choices about how to best get py5 to work with other popular Python libraries and tools such as [Jupyter](https://jupyter.org/), [numpy](https://numpy.org/), [shapely](https://shapely.readthedocs.io/en/stable/), [trimesh](https://trimesh.org/), [matplotlib](https://matplotlib.org/), and [Pillow](https://python-pillow.org/).
9+
py5 is a new version of [Processing][processing] for Python 3.9+. The goal of py5 is to create a version of Processing that is [integrated into the Python ecosystem](https://py5coding.org/integrations/python_ecosystem_integrations.html). Built into the library are thoughtful choices about how to best get py5 to work with other popular Python libraries and tools such as [Jupyter](https://jupyter.org/), [numpy](https://numpy.org/), [shapely](https://shapely.readthedocs.io/en/stable/), [trimesh](https://trimesh.org/), [matplotlib](https://matplotlib.org/), and [Pillow](https://python-pillow.org/).
1010

1111
py5 is an excellent choice for educators looking to teach Python in the context of creative coding and is currently used in classrooms all around the world. The documentation website includes [introductory tutorials](https://py5coding.org/tutorials/intro_to_py5_and_python.html) as well as extensive [reference documentation](https://py5coding.org/reference/summary.html), complete with example code.
1212

py5_resources/py5_module/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[![mybinder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/py5coding/py5examples/HEAD?urlpath=lab)
88

9-
py5 is a new version of [Processing][processing] for Python 3.8+. The goal of py5 is to create a version of Processing that is [integrated into the Python ecosystem](https://py5coding.org/integrations/python_ecosystem_integrations.html). Built into the library are thoughtful choices about how to best get py5 to work with other popular Python libraries and tools such as [Jupyter](https://jupyter.org/), [numpy](https://numpy.org/), [shapely](https://shapely.readthedocs.io/en/stable/), [trimesh](https://trimesh.org/), [matplotlib](https://matplotlib.org/), and [Pillow](https://python-pillow.org/).
9+
py5 is a new version of [Processing][processing] for Python 3.9+. The goal of py5 is to create a version of Processing that is [integrated into the Python ecosystem](https://py5coding.org/integrations/python_ecosystem_integrations.html). Built into the library are thoughtful choices about how to best get py5 to work with other popular Python libraries and tools such as [Jupyter](https://jupyter.org/), [numpy](https://numpy.org/), [shapely](https://shapely.readthedocs.io/en/stable/), [trimesh](https://trimesh.org/), [matplotlib](https://matplotlib.org/), and [Pillow](https://python-pillow.org/).
1010

1111
py5 is an excellent choice for educators looking to teach Python in the context of creative coding and is currently used in classrooms all around the world. The documentation website includes [introductory tutorials](https://py5coding.org/tutorials/intro_to_py5_and_python.html) as well as extensive [reference documentation](https://py5coding.org/reference/summary.html), complete with example code.
1212

py5_resources/py5_module/py5/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
pass
116116

117117

118-
__version__ = "0.10.2.dev4"
118+
__version__ = "0.10.2a0"
119119

120120
_PY5_USE_IMPORTED_MODE = py5_tools.get_imported_mode()
121121
py5_tools._lock_imported_mode()

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 .jvm import * # noqa
2828
from .libraries import * # noqa
2929

30-
__version__ = "0.10.2.dev4"
30+
__version__ = "0.10.2a0"

py5_resources/py5_module/py5_tools/utilities.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,21 +61,21 @@
6161
<dependency>
6262
<groupId>py5</groupId>
6363
<artifactId>py5-processing4</artifactId>
64-
<version>0.10.2.dev4</version>
64+
<version>0.10.2a0</version>
6565
<scope>system</scope>
6666
<systemPath>$${{jarlocation}}/core.jar</systemPath>
6767
</dependency>
6868
<dependency>
6969
<groupId>py5</groupId>
7070
<artifactId>py5-jogl</artifactId>
71-
<version>0.10.2.dev4</version>
71+
<version>0.10.2a0</version>
7272
<scope>system</scope>
7373
<systemPath>$${{jarlocation}}/jogl-all.jar</systemPath>
7474
</dependency>
7575
<dependency>
7676
<groupId>py5</groupId>
7777
<artifactId>py5</artifactId>
78-
<version>0.10.2.dev4</version>
78+
<version>0.10.2a0</version>
7979
<scope>system</scope>
8080
<systemPath>$${{jarlocation}}/py5.jar</systemPath>
8181
</dependency>

0 commit comments

Comments
 (0)