diff --git a/CITATION.cff b/CITATION.cff
index 6f7b69b665ada694ec5756fd0a6bb16c490c23a5..cb8d326b2b21a51398e21c7945cf1aa0a626999f 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -20,6 +20,6 @@ authors:
     given-names: Stefan
     orcid: https://orcid.org/0000-0001-7214-8125
 title: CaosDB - Advanced User Tools
-version: 0.10.0
+version: 0.11.0
 doi: 10.3390/data4020083
-date-released: 2024-04-24
\ No newline at end of file
+date-released: 2024-07-09
\ No newline at end of file
diff --git a/setup.py b/setup.py
index 068dec9f4d5274a00c2a2a83da11df55bfbe8be0..acc3a8de96acf27a553a696175d99c708ac85dd9 100755
--- a/setup.py
+++ b/setup.py
@@ -46,10 +46,10 @@ from setuptools import find_packages, setup
 ########################################################################
 
 MAJOR = 0
-MINOR = 10
-MICRO = 1
+MINOR = 11
+MICRO = 0
 PRE = ""  # e.g. rc0, alpha.1, 0.beta-23
-ISRELEASED = False
+ISRELEASED = True
 
 if PRE:
     VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)
diff --git a/src/doc/conf.py b/src/doc/conf.py
index 30299a59638e23d1645c85144e1bcbb7663a3051..e3a95f36ce69146adbc3b91c9f28a3169286d63d 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.10.1'
+version = '0.11.0'
 # The full version, including alpha/beta/rc tags
-release = '0.10.1-dev'
+release = '0.11.0'
 
 
 # -- General configuration ---------------------------------------------------