diff --git a/CHANGELOG.md b/CHANGELOG.md
index 52e8ea03e3cf34580423ca666c63b76a9cb39338..2d5b8e3e89609ac7ea676521a733a9374b60c42c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,7 +5,9 @@ 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]
-### Changed
+
+## [1.5.0] - 2022-10-09
+### Added
 - Allow inviting participants to multiple Matrix rooms
 
 ## [1.4.1] - 2022-05-26
@@ -59,6 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 - Ask for Matrix ID in selected products
 - Invite Pretix participants to configured Matrix room
 
+[1.5.0]: https://gitlab.fachschaften.org/kif/pretix-matrix-inviter/-/compare/v1.4.1...v1.5.0
 [1.4.1]: https://gitlab.fachschaften.org/kif/pretix-matrix-inviter/-/compare/v1.4.0...v1.4.1
 [1.4.0]: https://gitlab.fachschaften.org/kif/pretix-matrix-inviter/-/compare/v1.3.0...v1.4.0
 [1.3.0]: https://gitlab.fachschaften.org/kif/pretix-matrix-inviter/-/compare/v1.2.3...v1.3.0
diff --git a/pretix_matrix_inviter/__init__.py b/pretix_matrix_inviter/__init__.py
index 008e72434dc8317a1c2e23bdb2b3d5fb1205b0b9..cb429b1a81addca77a2fb28aa1ba767af4ab9be7 100644
--- a/pretix_matrix_inviter/__init__.py
+++ b/pretix_matrix_inviter/__init__.py
@@ -5,7 +5,7 @@ try:
 except ImportError:
     raise RuntimeError("Please use pretix 2.7 or above to run this plugin!")
 
-__version__ = "1.4.1"
+__version__ = "1.5.0"
 
 
 class PluginApp(PluginConfig):