diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 32f91354f1523062629a2758bb42db9b10aae6d0..93b3b54ad01f0e6960f0da541cb15cb75358c63a 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -6,13 +6,22 @@ All notable changes to this project will be documented in this file.
 The format is based on `Keep a Changelog`_,
 and this project adheres to `Semantic Versioning`_.
 
-Unreleased
-----------
+
+`2.0b0` - 2023-02-23
+--------------------
+
+This version requires AlekSIS-Core 3.0. It is incompatible with any previous
+version.
+
+Removed
+~~~~~~~
+
+* Legacy menu integration for AlekSIS-Core pre-3.0
 
 Added
 ~~~~~
 
-* Add SPA support.
+* Support for SPA in AlekSIS-Core 3.0
 
 `1.0`_ - 2022-06-25
 -------------------
@@ -26,3 +35,4 @@ Added
 .. _Semantic Versioning: https://semver.org/spec/v2.0.0.html
 
 .. _1.0: https://edugit.org/AlekSIS/Official/AlekSIS-App-Matrix/-/tags/1.0
+.. _2.0b0: https://edugit.org/AlekSIS/Official/AlekSIS-App-Matrix/-/tags/2.0b0
diff --git a/docs/conf.py b/docs/conf.py
index be9800f0e53744ba0f9fa0dcd6d9294d9fde541a..241d422ba25b7dfa14b3789c4d454bec4becbf83 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -29,9 +29,9 @@ copyright = "2018-2023 The AlekSIS team"
 author = "The AlekSIS Team"
 
 # The short X.Y version
-version = "3.0"
+version = "2.0"
 # The full version, including alpha/beta/rc tags
-release = "3.0.0.dev0"
+release = "2.0b0"
 
 
 # -- General configuration ---------------------------------------------------
diff --git a/pyproject.toml b/pyproject.toml
index dadf61c64545d011c9cb74c6700c8472ff8fbfca..0445644af55ded14fd510d5cfee9ad0206282ca0 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "AlekSIS-App-Matrix"
-version = "3.0.0.dev0"
+version = "2.0b0"
 packages = [
     { include = "aleksis" }
 ]
@@ -17,7 +17,7 @@ license = "EUPL-1.2-or-later"
 homepage = "https://aleksis.org"
 repository = "https://edugit.org/AlekSIS/official/AlekSIS-App-Matrix"
 classifiers = [
-    "Development Status :: 4 - Beta",
+    "Development Status :: 5 - Production/Stable",
     "Environment :: Web Environment",
     "Framework :: Django :: 3.0",
     "Intended Audience :: Education",
@@ -32,7 +32,7 @@ secondary = true
 
 [tool.poetry.dependencies]
 python = "^3.9"
-aleksis-core = "^3.0.dev3"
+aleksis-core = "^3.0b0"
 
 [tool.poetry.dev-dependencies]
 aleksis-builddeps = "*"