Skip to content

Commit

Permalink
Publish the version scheme (early-semver) (#46)
Browse files Browse the repository at this point in the history
Pull request: #46
  • Loading branch information
lefou authored Sep 15, 2022
1 parent 2fd0e92 commit 548045f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ trait MimaCheck extends Mima {
trait GenyPublishModule extends PublishModule with MimaCheck {
override def artifactName = "geny"

def publishVersion = VcsVersion.vcsState().format()
override def publishVersion: T[String] = VcsVersion.vcsState().format()

def pomSettings = PomSettings(
override def versionScheme: T[Option[VersionScheme]] = Some(VersionScheme.EarlySemVer)

override def pomSettings: T[PomSettings] = PomSettings(
description = artifactName(),
organization = "com.lihaoyi",
url = "https://github.com/com-lihaoyi/geny",
Expand Down

0 comments on commit 548045f

Please sign in to comment.