Skip to content

Commit

Permalink
Adjustments for 3.2.17 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Sep 7, 2023
1 parent feb3944 commit 6cad9e1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
4 changes: 2 additions & 2 deletions project/BuildCommons.scala
Expand Up @@ -21,9 +21,9 @@ trait BuildCommons {
"org.scala-js" %% "scalajs-test-interface" % scalaJSVersion
)

val releaseVersion = "3.2.16"
val releaseVersion = "3.2.17"

val previousReleaseVersion = "3.2.15"
val previousReleaseVersion = "3.2.16"

val plusJUnitVersion = "3.2.10.0"
val plusTestNGVersion = "3.2.10.0"
Expand Down
10 changes: 7 additions & 3 deletions project/JsBuild.scala
Expand Up @@ -76,9 +76,13 @@ trait JsBuild { this: BuildCommons =>
mappings in (Compile, packageSrc) ++= mappings.in(scalacticMacroJS, Compile, packageSrc).value,
mimaPreviousArtifacts := Set(organization.value %%% moduleName.value % previousReleaseVersion),
mimaCurrentClassfiles := (classDirectory in Compile).value.getParentFile / (moduleName.value + sjsPrefix + scalaBinaryVersion.value + "-" + releaseVersion + ".jar"),
mimaBinaryIssueFilters ++= {
Seq()
}
mimaBinaryIssueFilters ++=
Seq(
exclude[DirectMissingMethodProblem]("org.scalactic.AndBool.failureMessageArgs"), // Private class function
exclude[DirectMissingMethodProblem]("org.scalactic.AndBool.this"), // Private class function
exclude[DirectMissingMethodProblem]("org.scalactic.OrBool.negatedFailureMessageArgs"), // Private class function
exclude[DirectMissingMethodProblem]("org.scalactic.OrBool.this") // Private class function
)
).settings(osgiSettings: _*).settings(
OsgiKeys.exportPackage := Seq(
"org.scalactic",
Expand Down
8 changes: 7 additions & 1 deletion project/scalatest.scala
Expand Up @@ -238,7 +238,13 @@ object ScalatestBuild extends BuildCommons with DottyBuild with NativeBuild with
docTaskSetting,
mimaPreviousArtifacts := Set(organization.value %% name.value % previousReleaseVersion),
mimaCurrentClassfiles := (classDirectory in Compile).value.getParentFile / (name.value + "_" + scalaBinaryVersion.value + "-" + releaseVersion + ".jar"),
mimaBinaryIssueFilters ++= Seq()
mimaBinaryIssueFilters ++=
Seq(
exclude[DirectMissingMethodProblem]("org.scalactic.AndBool.failureMessageArgs"), // Private class function
exclude[DirectMissingMethodProblem]("org.scalactic.AndBool.this"), // Private class function
exclude[DirectMissingMethodProblem]("org.scalactic.OrBool.negatedFailureMessageArgs"), // Private class function
exclude[DirectMissingMethodProblem]("org.scalactic.OrBool.this") // Private class function
)
).settings(osgiSettings: _*).settings(
OsgiKeys.exportPackage := Seq(
"org.scalactic",
Expand Down

0 comments on commit 6cad9e1

Please sign in to comment.