We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 571488a commit a6fa69dCopy full SHA for a6fa69d
1 file changed
completion.py
@@ -16,7 +16,7 @@ def branches_from_devguide(devguide_dir: Path) -> list[str]:
16
p = devguide_dir.joinpath('include/release-cycle.json')
17
data = json.loads(p.read_text())
18
return [
19
- branch for branch in data if data[branch]['status'] in ('bugfix', 'security')
+ branch for branch in data if data[branch]['status'] in ('bugfix', 'security', 'prerelease')
20
]
21
22
0 commit comments