diff --git a/CHANGELOG.md b/CHANGELOG.md index c56581e..15ed536 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,17 @@ 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). +## [v2.3.0-beta.2] + +### Fixed + +- `!draupnir deactivate --no-confirm` was backwards. + +- `--purge-messages` on user deactivation was broken. + +Apologies, normally we'd have integration tests for this but we are time limited +at the moment. + ## [v2.3.0-beta.1] ### Added diff --git a/package.json b/package.json index 7523ecd..02b6def 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "draupnir", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "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 16d5bc7..e910b1d 100644 --- a/synapse_antispam/setup.py +++ b/synapse_antispam/setup.py @@ -6,7 +6,7 @@ from setuptools import setup, find_packages setup( name="mjolnir", - version="2.3.0-beta.1", # version automated in package.json - Do not edit this line, use `yarn version`. + version="2.3.0-beta.2", # version automated in package.json - Do not edit this line, use `yarn version`. packages=find_packages(), description="Mjolnir Antispam", include_package_data=True,