diff --git a/CHANGELOG.md b/CHANGELOG.md index 94b4004363..447b4c577a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ however, insignificant breaking changes do not guarantee a major version bump, s # [UNRELEASED] +# v4.3.0 + # Breaking - The `?close` command argument order has been changed due to technical difficulties with the structure of argument passing. @@ -17,7 +19,7 @@ however, insignificant breaking changes do not guarantee a major version bump, s ### Fixed - Improved select options in the select menu (Thanks #3298). - Fixed the bot failing catastrophically when plugin registry fails to load (Thanks #3328). -- Modmail now properly save stickers into MongoDB (#3240). +- Modmail now properly save stickers as its own object in MongoDB. (#3240). - Reworked `?close` command syntax to fix improper argument parsing (#3310). - Fixed improper type hinting in `?adduser` command leading to command failure. (#3311). diff --git a/README.md b/README.md index ae5536c95a..e2350d096a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@
A Modmail fork with a focus on improvements and bug fixes.

- + MIT License diff --git a/bot.py b/bot.py index 725afefc37..df0b92d9cd 100644 --- a/bot.py +++ b/bot.py @@ -1,4 +1,4 @@ -__version__ = "4.2.0" +__version__ = "4.3.0" import asyncio diff --git a/poetry.lock b/poetry.lock index e508c93670..cf26da1a7e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1045,7 +1045,7 @@ files = [ [[package]] name = "platformdirs" -version = "4.2.0" +version = "4.3.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." optional = false python-versions = ">=3.8" diff --git a/pyproject.toml b/pyproject.toml index ae9b04bacb..a447658cf2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Discord Modmail" -version = "4.2.0" +version = "4.3.0" description = "Raiden's personal fork of Python Discord Modmail bot" authors = [ "Raiden Sakura ",