diff --git a/CHANGELOG.md b/CHANGELOG.md
index d7d7adaa22e68d4126d53cab7add5a862c829181..f51b1e3bc534ca2d3f3e0804febc7716e43d80b7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,7 +5,8 @@ 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]
+## [0.8.0] - 2022-07-12
+(Timm Fitschen)
 
 ### Added ###
 
diff --git a/DEPENDENCIES.md b/DEPENDENCIES.md
index 117e764e44e7fa2693919451b653647b370be63f..cccdbcba9df2cc63e08a93c8b99dc13c92211f7f 100644
--- a/DEPENDENCIES.md
+++ b/DEPENDENCIES.md
@@ -1,4 +1,4 @@
-* caosdb-server >= 0.7.2
+* caosdb-server >= 0.8.0
 * Python >= 3.8
 * pip >= 20.0.2
 
diff --git a/setup.py b/setup.py
index 70d87707b71e79ac7a819a15d9df4ae1d9327b2d..af9e680981ba7a802e22fcde706cb6b73dc7f6dc 100755
--- a/setup.py
+++ b/setup.py
@@ -45,10 +45,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 = 7
-MICRO = 5
+MINOR = 8
+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 8080c87b393c6684e92a98d14ac3d7a572a72cc4..77531343d49a9bfa9b1d30d7681f040509d0c336 100644
--- a/src/doc/conf.py
+++ b/src/doc/conf.py
@@ -29,10 +29,10 @@ copyright = '2022, IndiScale GmbH'
 author = 'Daniel Hornung'
 
 # The short X.Y version
-version = '0.7.4'
+version = '0.8.0'
 # The full version, including alpha/beta/rc tags
 # release = '0.5.2-rc2'
-release = '0.7.4'
+release = '0.8.0'
 
 
 # -- General configuration ---------------------------------------------------