diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0dc08e1da9d00c52006137d1d865fdad1cb5e46e..fb71c8b905bed071cee16167142fab0a0eae215d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,22 @@ 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 ###
+
+### Documentation ###
+
 ## [0.6.1] - 2023-01-20##
 
 ### Added ###
diff --git a/setup.py b/setup.py
index 379418314d0ca7d9b53ba79bedff2aa628fb1607..582bf104ec981ef2aa99af110704524ba5ee78c5 100755
--- a/setup.py
+++ b/setup.py
@@ -47,9 +47,9 @@ from setuptools import find_packages, setup
 
 MAJOR = 0
 MINOR = 6
-MICRO = 1
+MICRO = 2
 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 e293c6e3ae1816e1f15427872c3f94eba2d8106f..cbaf40c6ef426f279c4f331771d114f2bbed9f6e 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.1'
+version = '0.6.2'
 # The full version, including alpha/beta/rc tags
-release = '0.6.1'
+release = '0.6.2-dev'
 
 
 # -- General configuration ---------------------------------------------------