Skip to content

Commit

Permalink
Merge branch 'cheeseng-feature-3.2.11' into 3.2.x-new
Browse files Browse the repository at this point in the history
  • Loading branch information
bvenners committed Jan 24, 2022
2 parents 661f476 + 0aac9e0 commit 2840dca
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 11 deletions.
8 changes: 4 additions & 4 deletions project/BuildCommons.scala
Expand Up @@ -18,12 +18,12 @@ trait BuildCommons {
"org.scala-js" %% "scalajs-test-interface" % scalaJSVersion
)

val releaseVersion = "3.2.10"
val releaseVersion = "3.2.11"

val previousReleaseVersion = "3.2.9"
val previousReleaseVersion = "3.2.10"

val plusJUnitVersion = "3.2.9.0"
val plusTestNGVersion = "3.2.9.0"
val plusJUnitVersion = "3.2.10.0"
val plusTestNGVersion = "3.2.10.0"
val flexmarkVersion = "0.62.2"

def rootProject: Project
Expand Down
3 changes: 2 additions & 1 deletion project/JsBuild.scala
Expand Up @@ -452,7 +452,8 @@ trait JsBuild { this: BuildCommons =>
mimaBinaryIssueFilters ++= {
Seq(
exclude[DirectMissingMethodProblem]("org.scalatest.concurrent.TimeLimits.failAfterImpl"), // New function not in current version
exclude[DirectMissingMethodProblem]("org.scalatest.concurrent.TimeLimits.cancelAfterImpl") // New function not in current version
exclude[DirectMissingMethodProblem]("org.scalatest.concurrent.TimeLimits.cancelAfterImpl"), // New function not in current version
exclude[ReversedMissingMethodProblem]("org.scalatest.events.Event.withPayload") // New private[scalatest] function not in current version
)
}
).settings(osgiSettings: _*).settings(
Expand Down
2 changes: 1 addition & 1 deletion project/NativeBuild.scala
Expand Up @@ -14,7 +14,7 @@ import org.portablescala.sbtplatformdeps.PlatformDepsPlugin.autoImport._

trait NativeBuild { this: BuildCommons =>

val scalaNativeVersion = Option(System.getenv("SCALANATIVE_VERSION")).getOrElse("0.4.0")
val scalaNativeVersion = Option(System.getenv("SCALANATIVE_VERSION")).getOrElse("0.4.3")

lazy val nativeCrossBuildLibraryDependencies = Def.setting {
CrossVersion.partialVersion(scalaVersion.value) match {
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Expand Up @@ -12,7 +12,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.1")

addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "0.6.1")

val scalaNativeVersion = Option(System.getenv("SCALANATIVE_VERSION")).getOrElse("0.4.0")
val scalaNativeVersion = Option(System.getenv("SCALANATIVE_VERSION")).getOrElse("0.4.3")

addSbtPlugin("org.scala-native" % "sbt-scala-native" % scalaNativeVersion)

Expand Down
4 changes: 3 additions & 1 deletion project/scalatest.scala
Expand Up @@ -609,7 +609,9 @@ object ScalatestBuild extends BuildCommons with DottyBuild with NativeBuild with
mimaBinaryIssueFilters ++= {
Seq(
exclude[DirectMissingMethodProblem]("org.scalatest.concurrent.TimeLimits.failAfterImpl"), // New function not in current version
exclude[DirectMissingMethodProblem]("org.scalatest.concurrent.TimeLimits.cancelAfterImpl") // New function not in current version
exclude[DirectMissingMethodProblem]("org.scalatest.concurrent.TimeLimits.cancelAfterImpl"), // New function not in current version
exclude[ReversedMissingMethodProblem]("org.scalatest.events.Event.withPayload"), // New private[scalatest] function not in current version
exclude[IncompatibleMethTypeProblem]("org.scalatest.tools.Framework#ScalaTestRunner#Skeleton#1#React.this") // SBT integration class not meant for third-party use.
)
}
).settings(osgiSettings: _*).settings(
Expand Down
6 changes: 3 additions & 3 deletions publish.sh
Expand Up @@ -11,7 +11,7 @@ sbt "project scalacticMacroJS" clean
sbt ++2.11.12 "project scalacticJS" clean publishSigned
sbt ++2.12.15 "project scalacticJS" clean publishSigned
sbt ++2.13.6 "project scalacticJS" clean publishSigned
export SCALANATIVE_VERSION=0.4.0
export SCALANATIVE_VERSION=0.4.3
sbt "project scalacticMacroNative" clean
sbt ++2.11.12 "project scalacticNative" clean publishSigned
sbt ++2.12.15 "project scalacticNative" clean publishSigned
Expand All @@ -36,7 +36,7 @@ sbt "project scalacticJS" clean
sbt ++2.11.12 "project scalatestJS" clean publishSigned
sbt ++2.12.15 "project scalatestJS" clean publishSigned
sbt ++2.13.6 "project scalatestJS" clean publishSigned
export SCALANATIVE_VERSION=0.4.0
export SCALANATIVE_VERSION=0.4.3
sbt "project scalacticMacroNative" clean
sbt ++2.11.12 "project scalatestNative" clean publishSigned
sbt ++2.12.15 "project scalatestNative" clean publishSigned
Expand All @@ -60,7 +60,7 @@ sbt "project scalacticJS" clean
sbt ++2.11.12 "project scalatestAppJS" clean publishSigned
sbt ++2.12.15 "project scalatestAppJS" clean publishSigned
sbt ++2.13.6 "project scalatestAppJS" clean publishSigned
export SCALANATIVE_VERSION=0.4.0
export SCALANATIVE_VERSION=0.4.3
sbt "project scalacticMacroNative" clean
sbt ++2.11.12 "project scalatestAppNative" clean publishSigned
sbt ++2.12.15 "project scalatestAppNative" clean publishSigned
Expand Down

0 comments on commit 2840dca

Please sign in to comment.