Skip to content

Commit

Permalink
Restarr on 2.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lrytz committed Jun 7, 2019
1 parent 43e040f commit 0629723
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 16 deletions.
17 changes: 4 additions & 13 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -83,21 +83,12 @@ ThisBuild / headerLicense := Some(HeaderLicense.Custom(
|""".stripMargin
))

Global / mimaReferenceVersion := Some("2.13.0-RC3")
Global / mimaReferenceVersion := Some("2.13.0")

import com.typesafe.tools.mima.core._
val mimaPrereleaseHandlingSettings = Seq(
val mimaFilterSettings = Seq(
mimaBinaryIssueFilters ++= Seq(
// Drop after 2.13.0 is out, whence src/reflect/mima-filters/ takes over.
ProblemFilters.exclude[Problem]("scala.reflect.internal.*"),


ProblemFilters.exclude[DirectMissingMethodProblem]("scala.collection.StringOps.collect$extension"),
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.collection.StringOps.collect$extension"),
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.collection.StringOps.collect"),
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.collection.StringOps.collect"),


),
)

Expand Down Expand Up @@ -368,7 +359,7 @@ lazy val library = configureAsSubproject(project)
),
mimaPreviousArtifacts := mimaReferenceVersion.value.map(organization.value % name.value % _).toSet,
mimaCheckDirection := "both",
mimaPrereleaseHandlingSettings,
mimaFilterSettings,
)
.settings(filterDocSources("*.scala" -- regexFileFilter(".*/scala/runtime/.*")))
.settings(
Expand Down Expand Up @@ -400,7 +391,7 @@ lazy val reflect = configureAsSubproject(project)
),
mimaPreviousArtifacts := mimaReferenceVersion.value.map(organization.value % name.value % _).toSet,
mimaCheckDirection := "both",
mimaPrereleaseHandlingSettings,
mimaFilterSettings,
)
.dependsOn(library)

Expand Down
1 change: 0 additions & 1 deletion src/reflect/mima-filters/2.13.0.backwards.excludes

This file was deleted.

1 change: 0 additions & 1 deletion src/reflect/mima-filters/2.13.0.forwards.excludes

This file was deleted.

2 changes: 1 addition & 1 deletion versions.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Scala version used for bootstrapping (see README.md)
starr.version=2.13.0-RC3
starr.version=2.13.0

# These are the versions of the modules that go with this release.
# Artifact dependencies:
Expand Down

0 comments on commit 0629723

Please sign in to comment.