diff --git a/CHANGELOG.md b/CHANGELOG.md index c4843c11..46e748a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,19 @@ and this project adheres to ## [Unreleased] - None +## [v2.0.1] 2025-01-18 + +### Fixed + +- Fixed an issue where the `!draupnir unban` and the unban prompt actually + banned users again at the room level instead of unbanning them. Matching + policy rules were still removed. This bug was introduced in + [v2.0.0-beta.5](https://github.com/the-draupnir-project/Draupnir/releases/tag/v2.0.0-beta.5). + Thanks to @nexy7574 for helping to debug the issue. + +- Fixed an issue where default protections would be renabled on restart if + disabled, thanks to @ll-SKY-ll and @mahdi1234 for helping with debugging this. + ## [v2.0.0] 2025-01-16 ### Upgrade Steps diff --git a/package.json b/package.json index ae279021..b6c9c481 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "draupnir", - "version": "2.0.0", + "version": "2.0.1", "description": "A moderation tool for Matrix", "main": "lib/index.js", "repository": "https://github.com/the-draupnir-project/Draupnir.git", diff --git a/synapse_antispam/setup.py b/synapse_antispam/setup.py index 529908be..2383e583 100644 --- a/synapse_antispam/setup.py +++ b/synapse_antispam/setup.py @@ -6,7 +6,7 @@ setup( name="mjolnir", - version="2.0.0", # version automated in package.json - Do not edit this line, use `yarn version`. + version="2.0.1", # version automated in package.json - Do not edit this line, use `yarn version`. packages=find_packages(), description="Mjolnir Antispam", include_package_data=True,