Skip to content

Commit

Permalink
Merge pull request #438 from sjrd/post-release-1.3.0
Browse files Browse the repository at this point in the history
Post release v1.3.0.
  • Loading branch information
sjrd authored Feb 20, 2024
2 parents a85f200 + 0dc38b9 commit bd0a72c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
15 changes: 2 additions & 13 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ inThisBuild(Def.settings(
Developer("sjrd", "Sébastien Doeraene", "[email protected]", url("https://github.com/sjrd/")),
Developer("bishabosha", "Jamie Thompson", "[email protected]", url("https://github.com/bishabosha")),
),
versionPolicyIntention := Compatibility.BinaryCompatible,
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
// Ignore dependencies to internal modules whose version is like `1.2.3+4...` (see https://github.com/scalacenter/sbt-version-policy#how-to-integrate-with-sbt-dynver)
versionPolicyIgnoredInternalDependencyVersions := Some("^\\d+\\.\\d+\\.\\d+\\+\\d+".r)
))
Expand Down Expand Up @@ -126,21 +126,10 @@ lazy val tastyQuery =
mimaBinaryIssueFilters ++= {
import com.typesafe.tools.mima.core.*
Seq(
// private[tastyquery], not an issue
ProblemFilters.exclude[DirectMissingMethodProblem]("tastyquery.Contexts#Context.classloader"),
ProblemFilters.exclude[MissingClassProblem]("tastyquery.Utils"),
ProblemFilters.exclude[MissingClassProblem]("tastyquery.Utils$"),
// private, not an issue
ProblemFilters.exclude[MissingClassProblem]("tastyquery.Types$TermRef$Resolved"),
ProblemFilters.exclude[MissingClassProblem]("tastyquery.Types$TypeRef$Resolved"),

// Everything in tastyquery.reader is private[tastyquery] at most
ProblemFilters.exclude[Problem]("tastyquery.reader.*"),
)
},

// Temporarily disabled until we have a published version of tasty-query that can handle 3.4.x.
//tastyMiMaPreviousArtifacts := mimaPreviousArtifacts.value,
tastyMiMaPreviousArtifacts := mimaPreviousArtifacts.value,
tastyMiMaConfig ~= { prev =>
import tastymima.intf._
prev
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.4")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "2.1.0")

addSbtPlugin("ch.epfl.scala" % "sbt-tasty-mima" % "1.1.0")
addSbtPlugin("ch.epfl.scala" % "sbt-tasty-mima" % "1.2.0")

0 comments on commit bd0a72c

Please sign in to comment.