You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we have the following generated versions:
Case
version
isSnapshot
isVersionStable
when on tag v1.0.0, w/o local changes
1.0.0
false
true
when there are no tags, on commit 1234abcd, w/o local changes
3-1234abcd
true
true
3-1234abcd is a horrible version because most of build tools consider it newer than 1.0.0, therefore module ID like "xxx" %% "xxx" % "1+" or "xxx" %% "xxx" % "latest.version" will be resolved to 3-1234abcd.
We should generate some versions like 0+3-1234abcd instead of 3-1234abcd.
The text was updated successfully, but these errors were encountered:
Atry
added a commit
to Atry/sbt-dynver
that referenced
this issue
Apr 19, 2019
Atry
changed the title
Untagged dyn version should not be considered as newer than tagged versions
Untagged dynamic version should not be considered as newer than tagged versions
Apr 19, 2019
Atry
added a commit
to Atry/sbt-dynver
that referenced
this issue
Apr 22, 2019
Currently we have the following generated versions:
3-1234abcd
is a horrible version because most of build tools consider it newer than1.0.0
, therefore module ID like"xxx" %% "xxx" % "1+"
or"xxx" %% "xxx" % "latest.version"
will be resolved to3-1234abcd
.We should generate some versions like
0+3-1234abcd
instead of3-1234abcd
.The text was updated successfully, but these errors were encountered: