Skip to content

Commit a76eede

Browse files
Added support for v1_4
1 parent a64acf8 commit a76eede

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/spec_xml/paths.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
class Branch(Enum):
2424
MASTER = "master"
2525
V1_3 = "v1_3"
26+
V1_4 = "v1_4"
2627

2728

2829
def get_chip_root():
@@ -104,4 +105,4 @@ def get_available_branches():
104105
Return a list of available branches for the data model.
105106
This can be expanded or dynamically fetched if necessary.
106107
"""
107-
return [Branch.MASTER, Branch.V1_3]
108+
return [Branch.MASTER, Branch.V1_3, Branch.V1_4]

0 commit comments

Comments
 (0)