diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 72ee5b50..39fe7cfa 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 0.6.2
+current_version = 0.7.0
message = Bump version to {new_version}
commit = True
tag = True
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index e0330dd6..568bbbc1 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog `_
and this project adheres to `Semantic Versioning `_.
-Unreleased
+0.7.0
----------
**Added**
diff --git a/docs/conf.py b/docs/conf.py
index c044adb5..195ddd6b 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -29,7 +29,7 @@
year = '2020'
author = 'Digital Building Technologies, Gramazio Kohler Research'
copyright = '{0}, {1}'.format(year, author)
-version = release = '0.6.2'
+version = release = '0.7.0'
pygments_style = 'sphinx'
show_authors = True
diff --git a/docs/doc_versions.txt b/docs/doc_versions.txt
index 0ba43a57..ef691fa3 100644
--- a/docs/doc_versions.txt
+++ b/docs/doc_versions.txt
@@ -1,5 +1,6 @@
latest
stable
+0.7.0
0.6.2
0.6.1
0.6.0
diff --git a/setup.py b/setup.py
index 1d7899f7..0f90a9f0 100644
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,7 @@ def read(*names, **kwargs):
setup(
name="compas_slicer",
- version="0.6.2",
+ version="0.7.0",
description="Slicing package for FDM 3D Printing with COMPAS",
long_description=long_description,
long_description_content_type="text/markdown",
diff --git a/src/compas_slicer/__init__.py b/src/compas_slicer/__init__.py
index dd6b6ea9..ffb78172 100644
--- a/src/compas_slicer/__init__.py
+++ b/src/compas_slicer/__init__.py
@@ -29,7 +29,7 @@
__copyright__ = 'Copyright 2020 ETH Zurich'
__license__ = 'MIT License'
__email__ = 'mitropoulou@arch.ethz.ch'
-__version__ = '0.6.2'
+__version__ = '0.7.0'
HERE = os.path.dirname(__file__)