Fix dynamic versioning example

This commit is contained in:
Philippus Baalman 2023-03-22 07:58:10 +01:00 committed by Matthew de Detrich
parent 85c2a46909
commit eb660940b6

View file

@ -40,7 +40,7 @@ object Version {
* *
* It has support for https://github.com/dwijnand/sbt-dynver format with `+` or * It has support for https://github.com/dwijnand/sbt-dynver format with `+` or
* `-` separator. The number of commits from the tag is handled as a numeric part. * `-` separator. The number of commits from the tag is handled as a numeric part.
* For example `1.0.0+3-73475dce26` is less than `1.0.10+10-ed316bd024` (3 < 10). * For example `1.0.0+3-73475dce26` is less than `1.0.0+10-ed316bd024` (3 < 10).
*/ */
final class Version(val version: String) extends Comparable[Version] { final class Version(val version: String) extends Comparable[Version] {
import Version.Undefined import Version.Undefined