@@ -34,7 +34,7 @@ val root = tlCrossRootProject.aggregate(
34
34
lazy val `circe-yaml-common` = project
35
35
.in(file(" circe-yaml-common" ))
36
36
.settings(
37
- description := " Library for converting between SnakeYAML's AST (YAML 1.1 ) and circe's AST" ,
37
+ description := " Library for converting between SnakeYAML's AST (YAML 2.0 ) and circe's AST" ,
38
38
libraryDependencies ++= Seq (
39
39
" io.circe" %% " circe-core" % Versions .circe
40
40
),
@@ -45,7 +45,7 @@ lazy val `circe-yaml` = project
45
45
.in(file(" circe-yaml" ))
46
46
.dependsOn(`circe-yaml-common`)
47
47
.settings(
48
- description := " Library for converting between SnakeYAML's AST (YAML 1.1 ) and circe's AST" ,
48
+ description := " Library for converting between SnakeYAML's AST (YAML 2.0 ) and circe's AST" ,
49
49
libraryDependencies ++= Seq (
50
50
" org.yaml" % " snakeyaml" % Versions .snakeYaml,
51
51
" io.circe" %% " circe-jawn" % Versions .circe % Test ,
@@ -61,7 +61,7 @@ lazy val `circe-yaml-v12` = project
61
61
.in(file(" circe-yaml-v12" ))
62
62
.dependsOn(`circe-yaml-common`)
63
63
.settings(
64
- description := " Library for converting between snakeyaml-engine's AST (YAML 1.2 ) and circe's AST" ,
64
+ description := " Library for converting between snakeyaml-engine's AST (YAML 2.0 ) and circe's AST" ,
65
65
libraryDependencies ++= Seq (
66
66
" io.circe" %% " circe-jawn" % Versions .circe % Test ,
67
67
" org.snakeyaml" % " snakeyaml-engine" % Versions .snakeYamlEngine,
0 commit comments