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-typesafe-config to 0.13.0 #2025

Merged
merged 3 commits into from
Aug 1, 2024
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
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object Dependencies {
val googleDiffV = "1.3.0"
val java8CompatV = "1.0.2"
val jgitV = "5.13.3.202401111512-r"
val metaconfigV = "0.12.0"
val metaconfigV = "0.13.0"
val nailgunV = "0.9.1"
val scalaXmlV = "2.2.0"
val scalametaV = "4.9.3"
Expand All @@ -42,9 +42,9 @@ object Dependencies {
val googleDiff = "com.googlecode.java-diff-utils" % "diffutils" % googleDiffV
val java8Compat = "org.scala-lang.modules" %% "scala-java8-compat" % java8CompatV
val jgit = "org.eclipse.jgit" % "org.eclipse.jgit" % jgitV
val metaconfig = "com.geirsson" %% "metaconfig-typesafe-config" % metaconfigV
val metaconfig = "org.scalameta" %% "metaconfig-typesafe-config" % metaconfigV
val pprint = "com.lihaoyi" %% "pprint" % pprintV
val metaconfigDoc = "com.geirsson" %% "metaconfig-docs" % metaconfigV
val metaconfigDoc = "org.scalameta" %% "metaconfig-docs" % metaconfigV
val metacp = "org.scalameta" %% "metacp" % scalametaV
val nailgunServer = "com.martiansoftware" % "nailgun-server" % nailgunV
val scalaXml = "org.scala-lang.modules" %% "scala-xml" % scalaXmlV
Expand Down
8 changes: 7 additions & 1 deletion project/ScalafixBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,13 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
"com.lihaoyi" %% "pprint",
// https://github.com/scalacenter/scalafix/pull/1819#issuecomment-1636118496
"org.scalameta" %% "fastparse-v2",
"com.lihaoyi" %% "geny"
"com.lihaoyi" %% "geny",
// https://github.com/scalacenter/scalafix/pull/2025#issuecomment-2264188708
"com.geirsson" %% "metaconfig-core",
"com.geirsson" %% "metaconfig-pprint",
"com.geirsson" %% "metaconfig-typesafe-config",
"com.lihaoyi" %% "fansi",
"com.lihaoyi" %% "sourcecode"
Comment on lines +240 to +241
Copy link
Collaborator

@bjaglin bjaglin Aug 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

follow-up post release in #2028

),
versionPolicyIgnoredInternalDependencyVersions :=
Some("^\\d+\\.\\d+\\.\\d+\\+\\d+".r),
Expand Down