diff --git a/CHANGELOG.md b/CHANGELOG.md index 5126fba..1501865 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,37 @@ # Changelog +## v0.2.1 + +Quick patch to bump `matrix-nio` to version `>=0.18`, as otherwise that is required for the bot to work with Synapse 1.38+. +See https://github.com/anoadragon453/matrix-reminder-bot/issues/86 for details on the bug. + +Otherwise, full changelog below: + +### Features + +* Improve the '!listreminders' output. +* Add one-letter aliases to each command. +* Add 'remind' as an alias for the 'remindme' command. +* Use a pill when reminding a user. + +### Bugfixes + +* Timezone errors due to daylight savings times will be corrected after a bridge restart. +* Prevent timezone-related errors when creating a reminder. +* Better parsing of reminders that have newlines. + +### Documentation + +* Add release instructions. + +### Internal Changes + +* Update setup.py to indicate Python 3.6+ is required. +* Bump minimum version of matrix-nio to 0.18. +* Bump the version of libolm to 3.2.4. +* Bump the version of Python in the CI to 3.9. + + ## v0.2.0 Lots of changes, updates and polishing! Find the list below: @@ -31,4 +63,4 @@ The minimum Python version is now 3.6. ## v0.1.0 -Initial release, all known bugs squashed! \ No newline at end of file +Initial release, all known bugs squashed! diff --git a/matrix_reminder_bot/__init__.py b/matrix_reminder_bot/__init__.py index 3b80dc2..db28d73 100644 --- a/matrix_reminder_bot/__init__.py +++ b/matrix_reminder_bot/__init__.py @@ -5,4 +5,4 @@ print("matrix_reminder_bot requires Python 3.6 or above.") sys.exit(1) -__version__ = "0.2.0" +__version__ = "0.2.1"