diff --git a/changelog.d/3474.feature.rst b/changelog.d/3474.feature.rst deleted file mode 100644 index 2a93f4989..000000000 --- a/changelog.d/3474.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Add a cli flag for setting a max size of message cache diff --git a/changelog.d/3481.feature.rst b/changelog.d/3481.feature.rst deleted file mode 100644 index 3bd9aeab5..000000000 --- a/changelog.d/3481.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Allow to edit prefix from command line using ``redbot --edit``. \ No newline at end of file diff --git a/changelog.d/3483.docs.rst b/changelog.d/3483.docs.rst deleted file mode 100644 index 8ca9a15da..000000000 --- a/changelog.d/3483.docs.rst +++ /dev/null @@ -1 +0,0 @@ -Add `-e` flag to `journalctl` command in systemd guide so that it takes the user to the end of logs automatically. diff --git a/changelog.d/mod/3488.misc.rst b/changelog.d/mod/3488.misc.rst deleted file mode 100644 index f85079e47..000000000 --- a/changelog.d/mod/3488.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Fix incomplete short help of ``[p]modset dm`` command. diff --git a/docs/changelog_3_3_0.rst b/docs/changelog_3_3_0.rst index 2b5eaa617..c59e82437 100644 --- a/docs/changelog_3_3_0.rst +++ b/docs/changelog_3_3_0.rst @@ -1,5 +1,39 @@ .. 3.3.x Changelogs +Redbot 3.3.1 (2020-02-05) +========================= + + +Core Bot +-------- + +- Add a cli flag for setting a max size of message cache +- Allow to edit prefix from command line using ``redbot --edit``. +- Some functions have been changed to no longer use deprecated asyncio functions + +Core Commands +------------- + +- The short help text for dm has been made more useful +- dm no longer allows owners to have the bot attempt to DM itself + +Utils +----- + +- Passing the event loop explicitly in utils is deprecated (Removal in 3.4) + +Mod Cog +------- + +- Hackban now works properly without being provided a number of days + +Documentation Changes +--------------------- + +- Add ``-e`` flag to ``journalctl`` command in systemd guide so that it takes the user to the end of logs automatically. +- Added section to install docs for CentOS 8 +- Improve usage of apt update in docs + Redbot 3.3.0 (2020-01-26) ========================= diff --git a/redbot/__init__.py b/redbot/__init__.py index 1e2517064..843d52d97 100644 --- a/redbot/__init__.py +++ b/redbot/__init__.py @@ -191,7 +191,7 @@ def _update_event_loop_policy(): _asyncio.set_event_loop_policy(_uvloop.EventLoopPolicy()) -__version__ = "3.3.1.dev1" +__version__ = "3.3.1" version_info = VersionInfo.from_str(__version__) # Filter fuzzywuzzy slow sequence matcher warning