From e7a1a4e5de867cb5cb24a2b2a2ef763ff0b30428 Mon Sep 17 00:00:00 2001 From: Abigail G Date: Mon, 12 Apr 2021 19:36:03 -0400 Subject: [PATCH] fix issue with help cmd not showing all cmds, bump to 2.7.3 --- CHANGELOG.md | 8 +++++++- exts/base.py | 1 - info.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a6ecec..39bf8d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +## [2.7.3] - 2021-04-12 +### Fixed +- Issue where `?help` might not display all commands. + + ## [2.7.2] - 2021-04-12 ### Fixed - Issue where `?help` might not work for all people. @@ -198,7 +203,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## 1.0.0 - 2019-07-31 [YANKED] -[Unreleased]: https://github.com/miaowware/qrm2/compare/v2.7.2...HEAD +[Unreleased]: https://github.com/miaowware/qrm2/compare/v2.7.3...HEAD +[2.7.3]: https://github.com/miaowware/qrm2/releases/tag/v2.7.3 [2.7.2]: https://github.com/miaowware/qrm2/releases/tag/v2.7.2 [2.7.1]: https://github.com/miaowware/qrm2/releases/tag/v2.7.1 [2.7.0]: https://github.com/miaowware/qrm2/releases/tag/v2.7.0 diff --git a/exts/base.py b/exts/base.py index 2a844f0..cbac405 100644 --- a/exts/base.py +++ b/exts/base.py @@ -43,7 +43,6 @@ class QrmHelpCommand(commands.HelpCommand): bolt_cmds[cat].append(c) else: bolt_cmds[cat] = [c] - cmds.remove(c) else: ret.append(c) diff --git a/info.py b/info.py index 4e565ea..4d0ffaf 100644 --- a/info.py +++ b/info.py @@ -15,5 +15,5 @@ contributing = """Check out the [source on GitHub](https://github.com/miaowware/ All issues and requests related to resources (including maps, band charts, data) should be added \ in [miaowware/qrm-resources](https://github.com/miaowware/qrm-resources).""" -release = "2.7.2" +release = "2.7.3" bot_server = "https://discord.gg/Ntbg3J4"