Skip to content

Commit 2014b63

Browse files
committed
Bump version to 0.1.2rc0
1 parent 2b529e7 commit 2014b63

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.bumpversion.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.1
2+
current_version = 0.1.2rc0
33
message = Bump version to {new_version}
44
commit = True
55
tag = True
@@ -9,13 +9,13 @@ parse = ^
99
(?P<release>rc)
1010
(?:(?P<rc>\d+(?:\.\d+)*))?
1111
)?
12-
serialize =
12+
serialize =
1313
{major}.{minor}.{patch}{release}{rc}
1414
{major}.{minor}.{patch}
1515

1616
[bumpversion:part:release]
1717
optional_value = final
18-
values =
18+
values =
1919
rc
2020
final
2121

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
project = "COMPAS CGAL"
2121
copyright = "2017, Block Research Group - ETH Zurich"
2222
author = "Tom Van Mele"
23-
release = "0.1.1"
23+
release = "0.1.2rc0"
2424
version = ".".join(release.split(".")[0:2])
2525

2626
master_doc = "index"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def build_extensions(self):
147147

148148
setup(
149149
name="compas_cgal",
150-
version="0.1.1",
150+
version="0.1.2rc0",
151151
description="COMPAS friedly bindings for the CGAL library.",
152152
long_description=long_description,
153153
long_description_content_type="text/markdown",

src/compas_cgal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
__copyright__ = "Block Research Group - ETH Zurich"
7575
__license__ = "MIT License"
7676
__email__ = "[email protected]"
77-
__version__ = "0.1.1"
77+
__version__ = "0.1.2rc0"
7878

7979
HERE = os.path.dirname(__file__)
8080

0 commit comments

Comments
 (0)