diff --git a/rna/__init__.py b/rna/__init__.py
index 3e17b4c6f8c028e67cd0c8f51806c451d6456b2b..0f1cf8bfa8ffd83ae0b1f47216a71b0c5b597efe 100644
--- a/rna/__init__.py
+++ b/rna/__init__.py
@@ -2,7 +2,7 @@
 
 __author__ = """Daniel Böckenhoff"""
 __email__ = "dboe@ipp.mpg.de"
-__version__ = "0.5.1"
+__version__ = "0.6.0"
 
 from . import plotting
 from . import log  # NOQA
diff --git a/setup.cfg b/setup.cfg
index fe1350743e7b8a42b2bcc0a61f8cc7d9a0fe2c61..2ae607a68677bde190fcf8013417b32cc9887472 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 0.5.1
+current_version = 0.6.0
 tag = True
 commit = True
 message = release-v{new_version}
@@ -17,23 +17,22 @@ name = rna
 url = https://gitlab.mpcdf.mpg.de/dboe/rna
 author = Daniel Böckenhoff
 author_email = dboe@ipp.mpg.de
-# find the full list of possible classifiers at https://pypi.org/classifiers/
 classifiers = 
-    Development Status :: 3 - Alpha
-    License :: OSI Approved :: MIT License
-    Programming Language :: Python
-    Programming Language :: Python :: 3
-    Programming Language :: Python :: 3.5
-    Programming Language :: Python :: 3.6
-    Programming Language :: Python :: 3.7
-    Programming Language :: Python :: 3.8
+	Development Status :: 3 - Alpha
+	License :: OSI Approved :: MIT License
+	Programming Language :: Python
+	Programming Language :: Python :: 3
+	Programming Language :: Python :: 3.5
+	Programming Language :: Python :: 3.6
+	Programming Language :: Python :: 3.7
+	Programming Language :: Python :: 3.8
 license = MIT License
 license_files = LICENSE.rst
 description = Basic and essential code building blocks of all pythons
 long_description = file: README.rst, LICENSE.rst
 long_description_content_type = text/x-rst
 keywords = plotting, matplotlib, pyqtgraph, backend, logging, path, argparse
-project_urls =
+project_urls = 
 	Documentation = https://rna_docs.readthedocs.io
 	Source = https://gitlab.mpcdf.mpg.de/dboe/rna
 
@@ -44,30 +43,30 @@ install_requires =
 	numpy
 	matplotlib
 	pathlib
-tests_require =
-    doctest
-    unittest
+tests_require = 
+	doctest
+	unittest
 
 [options.packages.find]
 exclude = 
 	tests*
 
 [options.extras_require]
-all =
-    %(dev)s
-dev =
+all = 
+	%(dev)s
+dev = 
 	%(docs)s
-    %(test)s
+	%(test)s
 	bumpversion  # for incrementing the version
 	twine  # for publishing
 	pre-commit  # https://pre-commit.com/ for hook managment
 	pre-commit-hooks
-    cookiecutter_project_upgrader
+	cookiecutter_project_upgrader
 	
 	%(pyqtgraph)s
-docs =
-    sphinx>=2.2.0  # requires templatedir option in sphinx-apidoc
-    sphinx_rtd_theme>=0.4.3
+docs = 
+	sphinx>=2.2.0  # requires templatedir option in sphinx-apidoc
+	sphinx_rtd_theme>=0.4.3
 test = 
 	flake8
 	pytest
diff --git a/setup.py b/setup.py
index db91de2c524da765f9c3e3b3d194310d81a228ff..5c49a31c8259c0ef649b66f496cf2adbc16e506a 100644
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,3 @@
 from setuptools import setup
 
-setup(version="0.5.1")
+setup(version="0.6.0")