Skip to content

Commit f819898

Browse files
committed
add support for Scala 2.13.0
1 parent 5c32269 commit f819898

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ lazy val commonSettings = inConfig(Test)(Defaults.testSettings) ++
1010
sonatypeProfileName := organization.value,
1111
scalaVersion := crossScalaVersions.value.head,
1212
crossScalaVersions := Seq(
13-
"2.13.0-RC3",
13+
"2.13.0",
1414
"2.12.8",
1515
"2.11.12",
1616
"2.10.7"
@@ -92,7 +92,7 @@ lazy val scalariform = (project
9292
settings(publishSettings("scalariform"))
9393
settings(
9494
libraryDependencies ++= scala2_11Dependencies.value,
95-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.0-SNAP12" % Test,
95+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.0-SNAP13" % Test,
9696
// sbt doesn't automatically load the content of the MANIFST.MF file, therefore
9797
// we have to do it here by ourselves. Furthermore, the version format in the
9898
// MANIFEST.MF is `version.qualifier`, which means that we have to replace
@@ -122,7 +122,7 @@ lazy val scalariform = (project
122122
Package.JarManifest(m)
123123
},
124124
testOptions in Test += Tests.Argument("-oI"),
125-
mimaPreviousArtifacts := Set(organization.value %% "scalariform" % "0.2.8")
125+
mimaPreviousArtifacts := Set(organization.value %% "scalariform" % "0.2.9")
126126
)
127127
)
128128

0 commit comments

Comments
 (0)