Skip to content

Commit

Permalink
Update mima on making UnknownFieldSet.Field as final
Browse files Browse the repository at this point in the history
  • Loading branch information
thesamet committed Jul 30, 2020
1 parent 3f896eb commit d2dbb1c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ lazy val runtime = crossProject(JSPlatform, JVMPlatform /*, NativePlatform*/ )
),
mimaPreviousArtifacts := Set("com.thesamet.scalapb" %% "scalapb-runtime" % MimaPreviousVersion),
mimaBinaryIssueFilters ++= Seq(
ProblemFilters.exclude[DirectMissingMethodProblem]("*.of")
ProblemFilters.exclude[DirectMissingMethodProblem]("*.of"),
ProblemFilters.exclude[FinalClassProblem]("scalapb.UnknownFieldSet$Field")
)
)
.platformsSettings(JSPlatform /*, NativePlatform*/ )(
Expand Down

0 comments on commit d2dbb1c

Please sign in to comment.