File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ class ReleaseJsonFlavor(enum.StrEnum):
109109 bcc = "bcc"
110110 wrath = "wrath"
111111 cata = "cata"
112+ mists = "mists"
112113
113114
114115@frozen
@@ -149,7 +150,7 @@ class ReleaseJsonReleaseMetadata:
149150 (?P<name>[^/]+)
150151 [/]
151152 (?P=name)
152- (?:[-_](?P<flavor>{ '|' .join (map (re .escape , TOC_ALIASES ))} ))?
153+ (?:[-_](?P<flavor>{ "|" .join (map (re .escape , TOC_ALIASES ))} ))?
153154 \.toc
154155 $
155156 """ ,
@@ -164,7 +165,8 @@ class ReleaseJsonReleaseMetadata:
164165 range (3_00_00 , 3_04_00 ): ReleaseJsonFlavor .mainline ,
165166 range (3_04_00 , 4_00_00 ): ReleaseJsonFlavor .wrath ,
166167 range (4_04_00 , 5_00_00 ): ReleaseJsonFlavor .cata ,
167- range (4_00_00 , 11_00_00 ): ReleaseJsonFlavor .mainline ,
168+ range (5_05_00 , 6_00_00 ): ReleaseJsonFlavor .mists ,
169+ range (6_00_00 , 11_00_00 ): ReleaseJsonFlavor .mainline ,
168170}
169171
170172
You can’t perform that action at this time.
0 commit comments