Skip to content

Commit 2772af8

Browse files
authored
Check for 'alpha' in version name instead of 'dev' (Azure#20962)
This change ensures that zero version is set for set for packages which do not have a dev version Fixed in this commit used by cosmos: Azure@6277247#diff-3de6019583e14d1c68408eb8638c57363de6606e2bcfae8b1ca074609577d70c
1 parent f03ec1f commit 2772af8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/versioning/set_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def set_dev_zero_version(build_type, build_qualifier):
9292

9393
if hasattr(module, 'current'):
9494

95-
if 'dev' in module.current:
95+
if 'alpha' in module.current:
9696
newlines.append(module.string_for_version_file())
9797
continue
9898

0 commit comments

Comments
 (0)