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 85a16f9 commit 8ee6c47Copy full SHA for 8ee6c47
src/GitVersionCore.Tests/IntegrationTests/DevelopScenarios.cs
@@ -204,4 +204,17 @@ public void WhenMultipleDevelopBranchesExistAndCurrentBranchHasIncrementInheritP
204
fixture.AssertFullSemver("1.1.0-x.1+3");
205
}
206
207
+
208
+ [Test]
209
+ public void ShouldProvideTheCorrectVersionEvenIfPreReleaseLabelExistsInTheGitTag()
210
+ {
211
+ using (var fixture = new EmptyRepositoryFixture())
212
213
+ fixture.Repository.MakeACommit();
214
+ fixture.ApplyTag("1.0.0-oreo.1");
215
+ fixture.BranchTo("develop");
216
217
+ fixture.AssertFullSemver("1.1.0-alpha.1");
218
+ }
219
220
0 commit comments