Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update metaconfig-docs, ... to 0.12.0 #1877

Merged
merged 2 commits into from
Oct 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.10"
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