diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 19d245df1f7b6a66ce458b014a7ace4a5ea9f4a9..a186154a3ae17a8c5aed1173b83eabddd7343591 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -9,6 +9,9 @@ and this project adheres to `Semantic Versioning`_.
 Unreleased
 ----------
 
+`2.9`_ - 2022-05-25
+-------------------
+
 Added
 ~~~~~
 
@@ -21,7 +24,9 @@ Fixed
 * The menu button used to be displayed twice on smaller screens.
 * The icons were loaded from external servers instead from local server.
 * Weekdays were not translated if system locales were missing
+  
   * Added locales-all to base image and note to docs
+
 * The icons in the account menu were still the old ones.
 * Due to a merge error, the once removed account menu in the sidenav appeared again.
 * Scheduled notifications were shown on dashboard before time.
@@ -39,7 +44,7 @@ Changed
 * [Dev] ActionForm now returns a proper return value from the executed action
 * Pin version of javascript dependencies
 
-2.8.1`_ - 2022-03-13
+`2.8.1`_ - 2022-03-13
 --------------------
 
 Changed
@@ -826,3 +831,4 @@ Fixed
 .. _2.7.4: https://edugit.org/AlekSIS/Official/AlekSIS/-/tags/2.7.4
 .. _2.8: https://edugit.org/AlekSIS/Official/AlekSIS/-/tags/2.8
 .. _2.8.1: https://edugit.org/AlekSIS/Official/AlekSIS/-/tags/2.8.1
+.. _2.9: https://edugit.org/AlekSIS/Official/AlekSIS/-/tags/2.9
diff --git a/aleksis/core/templates/core/ical/ical_list.html b/aleksis/core/templates/core/ical/ical_list.html
index 2388feb2daa9c4b31abb80bc830055e2d2d3efc6..3396515d77423542046f5702b14ead4f572aa805 100644
--- a/aleksis/core/templates/core/ical/ical_list.html
+++ b/aleksis/core/templates/core/ical/ical_list.html
@@ -1,8 +1,8 @@
 {% extends 'core/base.html' %}
 {% load i18n msg_box static html_helpers %}
 
-{% block page_title %}{% trans "ICal Feeds" %}{% endblock page_title %}
-{% block browser_title %}{% trans "ICal Feeds" %}{% endblock browser_title %}
+{% block page_title %}{% trans "iCal Feeds" %}{% endblock page_title %}
+{% block browser_title %}{% trans "iCal Feeds" %}{% endblock browser_title %}
 
 {% block content %}
   {% trans "These are URLs for different Calendar Feeds in the iCal (.ics) format. You can create as many as you want and import them in your calendar software." as msg %}
diff --git a/docs/conf.py b/docs/conf.py
index dc58a3b9a1acc1ecb89552e27e33a4c66dd48c96..b31ca6be5a35d2e169c9c13c52de1180b108b608 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -29,9 +29,9 @@ copyright = "2019-2022 The AlekSIS team"
 author = "The AlekSIS Team"
 
 # The short X.Y version
-version = "2.8"
+version = "2.9"
 # The full version, including alpha/beta/rc tags
-release = "2.8.2.dev0"
+release = "2.9.1.dev0"
 
 
 # -- General configuration ---------------------------------------------------
diff --git a/pyproject.toml b/pyproject.toml
index d186fedd46cd899cebbf8fd8201838956a963e4c..b492b58bcf6d32c8bccbfd0360737605fcddad49 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "AlekSIS-Core"
-version = "2.8.2.dev0"
+version = "2.9.1.dev0"
 packages = [
     { include = "aleksis" }
 ]