diff --git a/RELEASE_GUIDELINES.md b/RELEASE_GUIDELINES.md
index 5f8e3765e877194957ace552d0c905fbb5225462..fe287b6f9a8421af8a28efe6181b1b9d087ef0cf 100644
--- a/RELEASE_GUIDELINES.md
+++ b/RELEASE_GUIDELINES.md
@@ -24,7 +24,7 @@ guidelines of the LinkAhead Project
 4. Update version numbers:
    1. In [CMakeLists.txt](./CMakeLists.txt): Check the version variables and
       make sure that the compatible caosdb-server version is set correctly.
-   2. In `conanfile.py`: Update the `version` variable.
+   2. In `conanfile.py` and `vcpkg.json`: Update the `version` variable.
    3. In `linkahead-cppinttest/conanfile.py`: Update the version
 
 5. Merge the release branch into the main branch.
diff --git a/conanfile.py b/conanfile.py
index b1078152092c1859d5e1a866cb17ea6bb492540b..304c9a7b85c9ee214aae6f567bc05bdbbf0e8f55 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -7,7 +7,7 @@ from conan.errors import ConanInvalidConfiguration
 
 class LinkAheadConan(ConanFile):
     name = "linkahead"
-    version = "0.3.0-dev"
+    version = "0.3.0"
     license = "AGPL-3.0-or-later"
     author = "Timm C. Fitschen <t.fitschen@indiscale.com>"
     url = "https://gitlab.indiscale.com/caosdb/src/caosdb-cpplib.git"
diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md
index 79f4865caa1a668cb48eb3905cafa964244e3811..10389b44d3868f4abc6c061a864140856795e2b7 100644
--- a/doc/CHANGELOG.md
+++ b/doc/CHANGELOG.md
@@ -5,20 +5,20 @@ 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] - YYYY-MM-DD ##
-(*Maintainer*)
+## [0.3.0] - 2024-11-15
+(Joscha Schmiedt)
 
 ### Added
 
-- Connection::ListUsers method
-- Added support for compilation with vcpkg.
+- `Connection::ListUsers` method
+- Added experimental support for compilation with vcpkg.
 
 ### Changed
 
 - Renamed the project to linkahead-cpplib
-- Updated dependency versions.
+- Updated dependency versions (Boost, gRPC)
 - Updated Python dependencies for Conan 2 and support Python 3.12.
-- Updated C++ package manager Conan to 2.5.0.
+- Updated C++ package manager Conan to 2.5.0 including migration of conanfile.py
 
 ### Deprecated
 
@@ -35,14 +35,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 ### Documentation
 
 
-## [0.2.2] - 2023-06-15 ##
+## [0.2.2] - 2023-06-15
 (Timm Fitschen)
 
 ### Added
 
 * Support for `SELECT` queries.
 
-## [0.2.1] - 2022-09-22 ##
+## [0.2.1] - 2022-09-22
 (Daniel Hornung)
 
 ### Changed ###
diff --git a/vcpkg.json b/vcpkg.json
index 81558359e32fe633a980df5bdbc79c569d4327af..a14833bd5658ef9fc11b510abf52147dcfd65bac 100644
--- a/vcpkg.json
+++ b/vcpkg.json
@@ -1,6 +1,6 @@
 {
   "name": "liblinkahead",
-  "version-string": "0.3.0-dev",
+  "version-string": "0.3.0",
   "port-version": 1,
   "description": "C++ library for the LinkAhead project",
   "license": "AGPL-3.0-or-later",