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 | |
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')
-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 de4eaa7d8..07e46752a 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): | |||
110 | pr_num = commit['pr_num'] | 110 | pr_num = commit['pr_num'] |
111 | print(f'* {title} ([#{pr_num}](https://github.com/qmk/qmk_firmware/pull/{pr_num}))') | 111 | print(f'* {title} ([#{pr_num}](https://github.com/qmk/qmk_firmware/pull/{pr_num}))') |
112 | 112 | ||
113 | _dump_commit_list("Bugs", pr_list_bugs) | ||
114 | _dump_commit_list("Core", pr_list_core) | 113 | _dump_commit_list("Core", pr_list_core) |
115 | _dump_commit_list("CLI", pr_list_cli) | 114 | _dump_commit_list("CLI", pr_list_cli) |
116 | _dump_commit_list("Submodule updates", pr_list_dependencies) | 115 | _dump_commit_list("Submodule updates", pr_list_dependencies) |
117 | _dump_commit_list("Keyboards", pr_list_keyboards) | 116 | _dump_commit_list("Keyboards", pr_list_keyboards) |
118 | _dump_commit_list("Keyboard fixes", pr_list_keyboard_fixes) | 117 | _dump_commit_list("Keyboard fixes", pr_list_keyboard_fixes) |
119 | _dump_commit_list("Others", pr_list_others) | 118 | _dump_commit_list("Others", pr_list_others) |
119 | _dump_commit_list("Bugs", pr_list_bugs) | ||