From 0c55113e348775121a029fc22227842c51a17d15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sch=C3=A4fer?= <felix@thegcat.net> Date: Sun, 9 Oct 2022 00:20:42 +0200 Subject: [PATCH] Version 1.5.0 --- CHANGELOG.md | 5 ++++- pretix_matrix_inviter/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52e8ea0..2d5b8e3 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 008e724..cb429b1 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): -- GitLab