diff options
author | Nick Brassel <nick@tzarc.org> | 2021-11-28 10:41:48 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-28 10:41:48 +1100 |
commit | 88fe5c16a5cdca5e3cf13ef3cd91f5f1e4898c37 (patch) | |
tree | 8f4f80e051600d7f27e699a6e02e9d7efeea39d1 /lib/python/qmk/cli | |
parent | 1e484035383862c11becd05aa15cd93acab289b3 (diff) | |
download | qmk_firmware-88fe5c16a5cdca5e3cf13ef3cd91f5f1e4898c37.tar.gz qmk_firmware-88fe5c16a5cdca5e3cf13ef3cd91f5f1e4898c37.zip |
Changelog 2021q4 (#15325)
* Changelog.
* Remove the asymmetric encoder PR from listing due to revert.
* More docs
* More docs
* More docs
* Links to changelog, updated schedule, slotted in 2 weeks of testing at the end so that there's no ambiguity with PR merge dates.
* Clarify keyboard moves.
* Fix dates
* Sidebar
* Fixup dates.
* Fixup dates.
* Wording.
Diffstat (limited to 'lib/python/qmk/cli')
-rwxr-xr-x | lib/python/qmk/cli/generate/develop_pr_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/generate/develop_pr_list.py b/lib/python/qmk/cli/generate/develop_pr_list.py index de4eaa7d88..07e46752a6 100755 --- a/lib/python/qmk/cli/generate/develop_pr_list.py +++ b/lib/python/qmk/cli/generate/develop_pr_list.py @@ -110,10 +110,10 @@ def generate_develop_pr_list(cli): pr_num = commit['pr_num'] print(f'* {title} ([#{pr_num}](https://github.com/qmk/qmk_firmware/pull/{pr_num}))') - _dump_commit_list("Bugs", pr_list_bugs) _dump_commit_list("Core", pr_list_core) _dump_commit_list("CLI", pr_list_cli) _dump_commit_list("Submodule updates", pr_list_dependencies) _dump_commit_list("Keyboards", pr_list_keyboards) _dump_commit_list("Keyboard fixes", pr_list_keyboard_fixes) _dump_commit_list("Others", pr_list_others) + _dump_commit_list("Bugs", pr_list_bugs) |