diff --git a/CHANGELOG.md b/CHANGELOG.md
index f331067707f361da9430a24cce58d18808e4ac02..4e2a2501a9ad3c61baea00717c7306f1c35af036 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,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.1.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.14.0] - 2024-02-20
 
 ### Added ###
diff --git a/setup.py b/setup.py
index a77b1095e2c7e3f678a85f7aff49d0a213bb9381..8a9276d0205fef49d59b7c41b70d21312b074642 100755
--- a/setup.py
+++ b/setup.py
@@ -46,10 +46,10 @@ from setuptools import find_packages, setup
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 ########################################################################
 
-ISRELEASED = True
+ISRELEASED = False
 MAJOR = 0
 MINOR = 14
-MICRO = 0
+MICRO = 1
 # Do not tag as pre-release until this commit
 # https://github.com/pypa/packaging/pull/515
 # has made it into a release. Probably we should wait for pypa/packaging>=21.4
diff --git a/src/doc/conf.py b/src/doc/conf.py
index 771a1f048f79b779526c56b2fd56712761021757..61a60d7c9e8d5c6b0959f4bba230cd483c06bc79 100644
--- a/src/doc/conf.py
+++ b/src/doc/conf.py
@@ -29,10 +29,10 @@ copyright = '2023, IndiScale GmbH'
 author = 'Daniel Hornung'
 
 # The short X.Y version
-version = '0.14.0'
+version = '0.14.1'
 # The full version, including alpha/beta/rc tags
 # release = '0.5.2-rc2'
-release = '0.14.0'
+release = '0.14.1-dev'
 
 
 # -- General configuration ---------------------------------------------------