Skip to content

Commit

Permalink
Towards 1.1.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrd committed May 31, 2024
1 parent 6b2d66d commit 5ec79bd
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
import com.typesafe.tools.mima.core._
import sbtcrossproject.{crossProject, CrossType}

val previousVersion = "1.1.2"
val previousVersion = "1.1.3"

inThisBuild(Def.settings(
crossScalaVersions := Seq("2.12.13", "2.11.12", "2.13.4"),
scalaVersion := crossScalaVersions.value.head,
version := "1.1.3",
version := "1.1.4-SNAPSHOT",
organization := "org.portable-scala",

scalacOptions ++= Seq(
Expand All @@ -32,14 +32,8 @@ lazy val `portable-scala-reflect` = crossProject(JSPlatform, JVMPlatform, Native
.settings(
scalacOptions in (Compile, doc) -= "-Xfatal-warnings",

mimaPreviousArtifacts ++= {
val isNewInThisRelease = System.getenv("SCALANATIVE_VERSION") == "0.5.2"
if (isNewInThisRelease)
Set.empty
else
Set(organization.value %%% moduleName.value % previousVersion)
},
mimaFailOnNoPrevious := false,
mimaPreviousArtifacts +=
organization.value %%% moduleName.value % previousVersion,

publishMavenStyle := true,
publishTo := {
Expand Down

0 comments on commit 5ec79bd

Please sign in to comment.