diff --git a/build.sbt b/build.sbt index ff62efe8..050c73b5 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,9 @@ -ThisBuild / version := "2.0.1-SNAPSHOT" +ThisBuild / version := { + val old = (ThisBuild / version).value + if ((ThisBuild / isSnapshot).value) "2.1.2-SNAPSHOT" + else old +} + ThisBuild / organization := "com.eed3si9n" def scala212 = "2.12.8" @@ -12,7 +17,7 @@ lazy val root = (project in file(".")) name := "sbt-assembly" scalacOptions := Seq("-deprecation", "-unchecked", "-Dscalac.patmat.analysisBudget=1024", "-Xfuture") libraryDependencies ++= Seq( - "com.eed3si9n.jarjarabrams" %% "jarjar-abrams-core" % "1.8.2", + "com.eed3si9n.jarjarabrams" %% "jarjar-abrams-core" % "1.8.3", "org.scalatest" %% "scalatest" % "3.1.1" % Test, ) (pluginCrossBuild / sbtVersion) := { diff --git a/project/build.properties b/project/build.properties index 46e43a97..27430827 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.8.2 +sbt.version=1.9.6 diff --git a/project/plugins.sbt b/project/plugins.sbt index 2196e6bc..20e36329 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,4 @@ -addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2") +addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1") +addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1") addSbtPlugin("com.eed3si9n" % "sbt-nocomma" % "0.1.1") addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.5.1")