Skip to content

Commit

Permalink
Merge pull request #1877 from scalacenter/update/metaconfig-docs-0.12.0
Browse files Browse the repository at this point in the history
Update metaconfig-docs, ... to 0.12.0
  • Loading branch information
bjaglin authored Oct 28, 2023
2 parents 8821b3b + cdf7e46 commit e954325
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object Dependencies {
val googleDiffV = "1.3.0"
val java8CompatV = "1.0.2"
val jgitV = "5.13.2.202306221912-r"
val metaconfigV = "0.11.1"
val metaconfigV = "0.12.0"
val nailgunV = "0.9.1"
val scalaXmlV = "2.2.0"
val scalametaV = "4.8.12"
Expand Down
12 changes: 11 additions & 1 deletion project/ScalafixBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,17 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
Some("^\\d+\\.\\d+\\.\\d+\\+\\d+".r),
versionScheme := Some("early-semver"),
// coursier-versions always return false for the *.*.*.*-r pattern jgit uses
libraryDependencySchemes += Dependencies.jgit.withRevision("always")
libraryDependencySchemes += Dependencies.jgit.withRevision("always"),
// TODO: remove after releasing scalafix 0.11.2
libraryDependencySchemes ++= Seq(
// metaconfig 0.12.0 is potentially breaking because of fansi 0.4.0 &
// transitively sourcecode 0.3.0 but it turns out the breaking changes
// only impact ScalaJS & Scala Native
"com.geirsson" %% "metaconfig-core" % "always",
"com.geirsson" %% "metaconfig-pprint" % "always",
"com.geirsson" %% "metaconfig-typesafe-config" % "always",
"com.lihaoyi" %% "fansi" % "always"
)
)

override def projectSettings: Seq[Def.Setting[_]] = List(
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.8.0")
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "2.1.3")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.8")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.4.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.1")
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.9.1")
Expand Down

0 comments on commit e954325

Please sign in to comment.