We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 979391e commit e04c0aeCopy full SHA for e04c0ae
tools/VersionController/Models/VersionBumper.cs
@@ -171,6 +171,12 @@ private string GetBumpedVersion()
171
{
172
versionBump = Version.MINOR;
173
}
174
+ // fix for https://github.com/Azure/azure-powershell/pull/12356
175
+ // this only work when version is 1.9.x
176
+ if (splitVersion[0] == 1 && splitVersion[1] == 9 && versionBump == Version.MINOR)
177
+ {
178
+ versionBump = Version.PATCH;
179
+ }
180
181
182
// PATCH update for preview modules (0.x.x or x.x.x-preview)
0 commit comments