Skip to content

Commit 8055b2d

Browse files
committed
circe 🐚
1 parent 08673b8 commit 8055b2d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

project/DependenciesPlugin.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ object DependenciesPlugin extends AutoPlugin {
66

77
object autoImport {
88
implicit class DependencyOps(p: Project) {
9+
val circeYamlVersion =
10+
"0.16.1"
11+
912
def withCats: Project =
1013
p
1114
.settings(libraryDependencies += "org.typelevel" %% "cats-core" % "2.13.0")
@@ -28,7 +31,7 @@ object DependenciesPlugin extends AutoPlugin {
2831
def withYaml: Project =
2932
p.settings(
3033
libraryDependencies ++= Seq(
31-
"io.circe" %% "circe-yaml" % "0.15.1"
34+
"io.circe" %% "circe-yaml" % circeYamlVersion
3235
)
3336
)
3437
}

0 commit comments

Comments
 (0)