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 72501fd commit 520996bCopy full SHA for 520996b
src/GitVersionCore.Tests/IntegrationTests/DevelopScenarios.cs
@@ -299,4 +299,17 @@ public void CommitsSinceVersionSourceShouldNotGoDownUponMergingFeatureOnlyToDeve
299
fixture.AssertFullSemver(config, expectedFullSemVer);
300
}
301
302
+
303
+ [Test]
304
+ public void ShouldProvideTheCorrectVersionEvenIfPreReleaseLabelExistsInTheGitTag()
305
+ {
306
+ using (var fixture = new EmptyRepositoryFixture())
307
308
+ fixture.Repository.MakeACommit();
309
+ fixture.ApplyTag("1.0.0-oreo.1");
310
+ fixture.BranchTo("develop");
311
312
+ fixture.AssertFullSemver("1.1.0-alpha.1");
313
+ }
314
315
0 commit comments