Skip to content

Commit c6c5248

Browse files
Update circe-generic, circe-parser to 0.14.5 (#310)
Co-authored-by: kenji yoshida <[email protected]>
1 parent 6ca3adc commit c6c5248

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ lazy val commonSettings = Def.settings(
169169
Compile / PB.targets := Nil,
170170
(Test / PB.protoSources) := Seq(baseDirectory.value.getParentFile / "shared/src/test/protobuf"),
171171
scalapbJsonCommonVersion := "0.8.9",
172-
circeVersion := "0.14.3",
172+
circeVersion := "0.14.5",
173173
libraryDependencies ++= Seq(
174174
"com.github.scalaprops" %%% "scalaprops" % "0.9.1" % "test",
175175
"io.circe" %%% "circe-generic" % circeVersion.value % "test",

tests/shared/src/test/scala-3/scalapb_circe/ProtoMacrosCirceTest2.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ class ProtoMacrosCirceTest2 extends AnyFunSpec {
3131
}
3232

3333
it("value") {
34-
checkTypeError(""" value" ] " """, "io.circe.ParsingFailure: expected json value got '] ' (line 1, column 2)")
35-
checkTypeError(""" value" } " """, "io.circe.ParsingFailure: expected json value got '} ' (line 1, column 2)")
34+
checkTypeError(""" value" ] " """, "ParsingFailure: expected json value got '] ' (line 1, column 2)")
35+
checkTypeError(""" value" } " """, "ParsingFailure: expected json value got '} ' (line 1, column 2)")
3636
}
3737
}
3838
}

0 commit comments

Comments
 (0)