Skip to content

Commit

Permalink
Update build.mill
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi authored Dec 13, 2024
1 parent 1a81a68 commit 43d13ee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,11 @@ trait MillPublishJavaModule extends MillJavaModule with PublishModule {
}

def artifactName = "mill-" + super.artifactName()
def publishVersion = millVersion()
def publishVersion = {
val version = millVersion()
assert(version != "DEV")
version
}
def publishProperties = super.publishProperties() ++ Map(
"info.releaseNotesURL" -> Settings.changelogUrl
)
Expand Down

0 comments on commit 43d13ee

Please sign in to comment.