diff --git a/CITATION.cff b/CITATION.cff
index b9f249ed501bd1c6dd217e56d7ea47748c1032dc..cbcb570b27b7cd71f50645614222302bccc34805 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.13.2
+version: 0.14.0
 doi: 10.3390/data4020083
-date-released: 2023-10-11
+date-released: 2024-02-20
diff --git a/setup.py b/setup.py
index 12ec4371c9169e15118d0a37f27831d22359ddff..a77b1095e2c7e3f678a85f7aff49d0a213bb9381 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 = 13
-MICRO = 3
+MINOR = 14
+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 6604aa6eff4b2bff7b7372b97e57e0f549dd3a50..771a1f048f79b779526c56b2fd56712761021757 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.13.3'
+version = '0.14.0'
 # The full version, including alpha/beta/rc tags
 # release = '0.5.2-rc2'
-release = '0.13.3-dev'
+release = '0.14.0'
 
 
 # -- General configuration ---------------------------------------------------