Skip to content

Commit

Permalink
Fail if tag is older than base version #105
Browse files Browse the repository at this point in the history
  • Loading branch information
osleonard committed Feb 3, 2022
1 parent db31486 commit dc27a17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ object TypelevelVersioningPlugin extends AutoPlugin {
if (previous > baseV)
sys.error(s"Your tlBaseVersion $baseV is behind the latest tag $previous")
else if (!baseV.isSameSeries(previous))
sys.error(s"Your tlBaseVersion $baseV has to be same with latest tag $previous")
sys.error(s"Your tlBaseVersion $baseV has to be in the same series with latest tag $previous")
else
Some(previous)
}
Expand Down

0 comments on commit dc27a17

Please sign in to comment.