Skip to content

Commit

Permalink
Merge pull request #504 from eed3si9n/wip/bump
Browse files Browse the repository at this point in the history
jarjar abrams 1.8.3
  • Loading branch information
eed3si9n committed Sep 17, 2023
2 parents 9f7fd8c + b69659e commit b9b6dad
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
9 changes: 7 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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) := {
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.8.2
sbt.version=1.9.6
3 changes: 2 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -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")

0 comments on commit b9b6dad

Please sign in to comment.