We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f2ff768 + c1039b8 commit 2158f3dCopy full SHA for 2158f3d
CI/lastRelease.py
@@ -7,9 +7,9 @@ def getLastReleaseTag():
7
for l in content:
8
draft = l["draft"]
9
tag = l["tag_name"]
10
- if str(draft) != 'True' and tag.startswith("v2"):
+ if str(draft) != 'True' and tag.startswith("v1"):
11
return tag[1:]
12
- return "v1.0.3"
+ return "1.0.3"
13
# main
14
def main():
15
result = getLastReleaseTag()
0 commit comments