diff --git a/CHANGELOG.md b/CHANGELOG.md
index e9185233190dbfe2a9bf3b052af12af9f4cd9116..11d540ffc52712803718f20264436a5d96897750 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,23 @@ 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).
 
-## [0.11.0] 2024-07-09 ##
+## [Unreleased] ##
+
+### Added ###
+
+### Changed ###
+
+### Deprecated ###
+
+### Removed ###
+
+### Fixed ###
+
+### Security ###
+
+### Documentation ###
+
+## [0.11.0] - 2024-07-09 ##
 
 ### Added ###
 
diff --git a/setup.py b/setup.py
index acc3a8de96acf27a553a696175d99c708ac85dd9..8afe8c77a5251c22df094bccc7d52ac096b21218 100755
--- a/setup.py
+++ b/setup.py
@@ -47,9 +47,9 @@ from setuptools import find_packages, setup
 
 MAJOR = 0
 MINOR = 11
-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 e3a95f36ce69146adbc3b91c9f28a3169286d63d..632caece9896f1fe7f075aa49ab7c652f94380d4 100644
--- a/src/doc/conf.py
+++ b/src/doc/conf.py
@@ -27,9 +27,9 @@ copyright = '2023, IndiScale GmbH'
 author = 'Daniel Hornung'
 
 # The short X.Y version
-version = '0.11.0'
+version = '0.11.1'
 # The full version, including alpha/beta/rc tags
-release = '0.11.0'
+release = '0.11.1-dev'
 
 
 # -- General configuration ---------------------------------------------------