Skip to content

Commit

Permalink
prepare sbt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Oct 7, 2024
1 parent 83e80fc commit 9803fff
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/scala/ReleasePlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,11 @@ object ReleasePlugin extends AutoPlugin {
private[this] sealed abstract class ParseResult extends Product with Serializable
private[this] object ParseResult {
final case class ReleaseVersion(value: String) extends ParseResult
object ReleaseVersion extends (String => ParseResult)
final case class NextVersion(value: String) extends ParseResult
object NextVersion extends (String => ParseResult)
final case class TagDefault(value: String) extends ParseResult
object TagDefault extends (String => ParseResult)
case object WithDefaults extends ParseResult
case object SkipTests extends ParseResult
case object CrossBuild extends ParseResult
Expand Down

0 comments on commit 9803fff

Please sign in to comment.