pjfanning opened a new issue, #339: URL: https://github.com/apache/incubator-pekko/issues/339
At the moment, when we use sbt to build jars, sbt plugins create a SNAPSHOT version number based on the last git tag - eg `0.0.0+26669-ec5b6764-SNAPSHOT`. When we put the source in a dir without having he dir under git control, the sbt plugins construct a version with `HEAD-<date>-<time>` - eg `HEAD+20230524-1416` We have fully discussed what to do as part of a release but it sort of makes sense to add a `version.sbt` like: ``` ThisBuild / version := "1.0.0" ``` If we include this file in the source release (generated by the sbt-source-dist plugin), then that affects the jar names that will be created and I think it makes sense that our '1.0.0' source release builds jars with '1.0.0' version on them. fyi @mdedetrich, @raboof, @jrudolph -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
