diff --git a/CITATION.cff b/CITATION.cff
index 3f51bdf839a5e0451f3d3aaf7f128f61b29927fc..123289ca17e8b43446f8f368621debccd8c27469 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 - Pylib
-version: 0.15.1
+version: 0.16.0
 doi: 10.3390/data4020083
-date-released: 2024-08-21
+date-released: 2024-11-13
diff --git a/setup.py b/setup.py
index 4e136f6d8d915b2a4437c1d42a0af25b85f45c5b..b8a04adefa9d8891c10576a733f53f2fa88b981d 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 = False
+ISRELEASED = True
 MAJOR = 0
-MINOR = 15
-MICRO = 2
+MINOR = 16
+MICRO = 0
 # 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 e5ead4a5015a606bf91f2e0009d7165f995206b5..f25ed399575bb208e699476b06f014abe43ee967 100644
--- a/src/doc/conf.py
+++ b/src/doc/conf.py
@@ -25,14 +25,14 @@ import sphinx_rtd_theme  # noqa: E402
 # -- Project information -----------------------------------------------------
 
 project = 'pylinkahead'
-copyright = '2023, IndiScale GmbH'
+copyright = '2024, IndiScale GmbH'
 author = 'Daniel Hornung'
 
 # The short X.Y version
-version = '0.15.2'
+version = '0.16.0'
 # The full version, including alpha/beta/rc tags
 # release = '0.5.2-rc2'
-release = '0.15.2-dev'
+release = '0.16.0'
 
 
 # -- General configuration ---------------------------------------------------