diff --git a/CHANGELOG.md b/CHANGELOG.md
index b9a8c585cbe657f1ee4463ce908d3ea4bab36f25..ec20ea9af39ebaeaec2481c2295b2f92cdfd4290 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [Unreleased] ##
+
+### Added ###
+
+### Changed ###
+
+### Deprecated ###
+
+### Removed ###
+
+### Fixed ###
+
+### Security ###
+
 ## [0.6.0] - 2022-10-11 ##
 (Florian Spreckelsen)
 
diff --git a/setup.py b/setup.py
index 1a1cbd953e0fabb08425b6d1972be301730aa744..d7ed9dc836b5f93c8c1ae6f68851b5ade8057c27 100755
--- a/setup.py
+++ b/setup.py
@@ -47,9 +47,9 @@ from setuptools import find_packages, setup
 
 MAJOR = 0
 MINOR = 6
-MICRO = 0
+MICRO = 1
 PRE = ""  # e.g. rc0, alpha.1, 0.beta-23
-ISRELEASED = True
+ISRELEASED = False
 
 if PRE:
     VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)
diff --git a/src/doc/conf.py b/src/doc/conf.py
index 8302fd6f8087b7fc2c3b0352d975b3d340be3677..f07a831f301e6a78db49c005274a22f4b03cf232 100644
--- a/src/doc/conf.py
+++ b/src/doc/conf.py
@@ -27,9 +27,9 @@ copyright = '2021, IndiScale GmbH'
 author = 'Daniel Hornung'
 
 # The short X.Y version
-version = '0.6.0'
+version = '0.6.1'
 # The full version, including alpha/beta/rc tags
-release = '0.6.0'
+release = '0.6.1-dev'
 
 
 # -- General configuration ---------------------------------------------------