Skip to content

Commit 643335c

Browse files
committed
Towards 0.1.2.
1 parent 9dbc267 commit 643335c

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

build.sbt

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// shadow sbt-scalajs' crossProject and CrossType until Scala.js 1.0.0 is released
22
import sbtcrossproject.{crossProject, CrossType}
33

4-
val previousVersion = "0.1.0"
4+
val previousVersion = "0.1.1"
55

66
inThisBuild(Def.settings(
77
crossScalaVersions := Seq("2.12.10", "2.10.7", "2.11.12", "2.13.1"),
88
scalaVersion := crossScalaVersions.value.head,
9-
version := "0.1.1",
9+
version := "0.1.2-SNAPSHOT",
1010
organization := "org.portable-scala",
1111

1212
scalacOptions ++= Seq(
@@ -31,10 +31,8 @@ lazy val `portable-scala-reflect` = crossProject(JSPlatform, JVMPlatform)
3131
.settings(
3232
scalacOptions in (Compile, doc) -= "-Xfatal-warnings",
3333

34-
mimaPreviousArtifacts ++= {
35-
if (scalaJSVersion == "1.0.0-RC1") Set.empty
36-
else Set(organization.value %%% moduleName.value % previousVersion)
37-
},
34+
mimaPreviousArtifacts +=
35+
organization.value %%% moduleName.value % previousVersion,
3836

3937
publishMavenStyle := true,
4038
publishTo := {

0 commit comments

Comments
 (0)