diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3166135..f2e53a8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2rc0 +current_version = 0.1.2 message = Bump version to {new_version} commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 2016e5b..cc22d42 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,7 +20,7 @@ project = "COMPAS CGAL" copyright = "2017, Block Research Group - ETH Zurich" author = "Tom Van Mele" -release = "0.1.2rc0" +release = "0.1.2" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/setup.py b/setup.py index 04c46bd..b80b7d5 100644 --- a/setup.py +++ b/setup.py @@ -147,7 +147,7 @@ def build_extensions(self): setup( name="compas_cgal", - version="0.1.2rc0", + version="0.1.2", description="COMPAS friedly bindings for the CGAL library.", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/compas_cgal/__init__.py b/src/compas_cgal/__init__.py index d2f12a2..88b49bb 100644 --- a/src/compas_cgal/__init__.py +++ b/src/compas_cgal/__init__.py @@ -74,7 +74,7 @@ __copyright__ = "Block Research Group - ETH Zurich" __license__ = "MIT License" __email__ = "van.mele@arch.ethz.ch" -__version__ = "0.1.2rc0" +__version__ = "0.1.2" HERE = os.path.dirname(__file__)