Skip to content

Commit

Permalink
Update build.sbt to force a new hash / tag for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffmay committed Nov 3, 2023
1 parent b8599e0 commit 4c21b26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ val root = tlCrossRootProject.aggregate(
lazy val `circe-yaml-common` = project
.in(file("circe-yaml-common"))
.settings(
description := "Library for converting between SnakeYAML's AST (YAML 1.1) and circe's AST",
description := "Library for converting between SnakeYAML's AST (YAML 2.0) and circe's AST",
libraryDependencies ++= Seq(
"io.circe" %% "circe-core" % Versions.circe
),
Expand All @@ -45,7 +45,7 @@ lazy val `circe-yaml` = project
.in(file("circe-yaml"))
.dependsOn(`circe-yaml-common`)
.settings(
description := "Library for converting between SnakeYAML's AST (YAML 1.1) and circe's AST",
description := "Library for converting between SnakeYAML's AST (YAML 2.0) and circe's AST",
libraryDependencies ++= Seq(
"org.yaml" % "snakeyaml" % Versions.snakeYaml,
"io.circe" %% "circe-jawn" % Versions.circe % Test,
Expand All @@ -61,7 +61,7 @@ lazy val `circe-yaml-v12` = project
.in(file("circe-yaml-v12"))
.dependsOn(`circe-yaml-common`)
.settings(
description := "Library for converting between snakeyaml-engine's AST (YAML 1.2) and circe's AST",
description := "Library for converting between snakeyaml-engine's AST (YAML 2.0) and circe's AST",
libraryDependencies ++= Seq(
"io.circe" %% "circe-jawn" % Versions.circe % Test,
"org.snakeyaml" % "snakeyaml-engine" % Versions.snakeYamlEngine,
Expand Down

0 comments on commit 4c21b26

Please sign in to comment.