Skip to content

Commit b9b6dad

Browse files
authored
Merge pull request #504 from eed3si9n/wip/bump
jarjar abrams 1.8.3
2 parents 9f7fd8c + b69659e commit b9b6dad

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

build.sbt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
ThisBuild / version := "2.0.1-SNAPSHOT"
1+
ThisBuild / version := {
2+
val old = (ThisBuild / version).value
3+
if ((ThisBuild / isSnapshot).value) "2.1.2-SNAPSHOT"
4+
else old
5+
}
6+
27
ThisBuild / organization := "com.eed3si9n"
38

49
def scala212 = "2.12.8"
@@ -12,7 +17,7 @@ lazy val root = (project in file("."))
1217
name := "sbt-assembly"
1318
scalacOptions := Seq("-deprecation", "-unchecked", "-Dscalac.patmat.analysisBudget=1024", "-Xfuture")
1419
libraryDependencies ++= Seq(
15-
"com.eed3si9n.jarjarabrams" %% "jarjar-abrams-core" % "1.8.2",
20+
"com.eed3si9n.jarjarabrams" %% "jarjar-abrams-core" % "1.8.3",
1621
"org.scalatest" %% "scalatest" % "3.1.1" % Test,
1722
)
1823
(pluginCrossBuild / sbtVersion) := {

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.8.2
1+
sbt.version=1.9.6

project/plugins.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
1+
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1")
2+
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
23
addSbtPlugin("com.eed3si9n" % "sbt-nocomma" % "0.1.1")
34
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.5.1")

0 commit comments

Comments
 (0)