Skip to content

Commit 75a6d66

Browse files
authored
Bump Circe libraries to 0.14.5, leave circe-generic-extras at 0.14.3 (#303)
1 parent 937501d commit 75a6d66

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

examples/akka-cluster-app/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name := "akka-cluster-app"
66
version := "0.1"
77
scalaVersion := "2.13.10"
88

9-
val circeVersion = "0.14.3"
9+
val circeVersion = "0.14.5"
1010
val akkaVersion = "2.6.20"
1111
val logbackVersion = "1.2.11"
1212

examples/akka-persistence-app/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ val AkkaManagementVersion = "1.1.4"
2626
val AkkaPersistenceJdbcVersion = "5.1.0"
2727
val AkkaProjectionVersion = "1.2.5"
2828
val ScalikeJdbcVersion = "3.5.0"
29-
val CirceVersion = "0.14.3"
29+
val CirceVersion = "0.14.5"
3030

3131
enablePlugins(AkkaGrpcPlugin, JavaAppPackaging, DockerPlugin, AkkaSerializationHelperPlugin)
3232
dockerBaseImage := "docker.io/library/adoptopenjdk:11-jre-hotspot"

examples/event-migration/build.sbt

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1+
import sbt.Keys.{semanticdbEnabled, semanticdbVersion}
2+
13
name := "event-migration"
24
version := "0.1"
35
scalaVersion := "2.13.10"
46

5-
val circeVersion = "0.14.3"
7+
val circeVersion = "0.14.5"
8+
val circeGenericExtrasVersion = "0.14.3"
69
val borerVersion = "1.8.0"
710
val scalaTestVersion = "3.2.10"
811

9-
libraryDependencies ++= Seq(
10-
"io.circe" %% "circe-core",
11-
"io.circe" %% "circe-generic",
12-
"io.circe" %% "circe-generic-extras",
13-
"io.circe" %% "circe-parser").map(_ % circeVersion)
12+
libraryDependencies ++= Seq("io.circe" %% "circe-core", "io.circe" %% "circe-generic", "io.circe" %% "circe-parser")
13+
.map(_ % circeVersion)
14+
15+
libraryDependencies += "io.circe" %% "circe-generic-extras" % circeGenericExtrasVersion
1416

1517
libraryDependencies ++= Seq(
1618
"io.bullet" %% "borer-core",

project/Dependencies.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ object Dependencies {
77
val akkaVersion = "2.6.20"
88
val borerVersion = "1.8.0"
99
val circeYamlVersion = "0.14.2"
10-
val circeVersion = "0.14.3"
10+
val circeVersion = "0.14.5"
11+
val circeGenericExtrasVersion = "0.14.3"
1112

1213
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.15"
1314
val logger = "org.slf4j" % "slf4j-simple" % "1.7.36"
@@ -33,7 +34,7 @@ object Dependencies {
3334

3435
val circeCore = "io.circe" %% "circe-core" % circeVersion
3536
val circeGeneric = "io.circe" %% "circe-generic" % circeVersion
36-
val circeGenericExtras = "io.circe" %% "circe-generic-extras" % circeVersion
37+
val circeGenericExtras = "io.circe" %% "circe-generic-extras" % circeGenericExtrasVersion
3738
val circeParser = "io.circe" %% "circe-parser" % circeVersion
3839
val circeYaml = "io.circe" %% "circe-yaml" % circeYamlVersion
3940

0 commit comments

Comments
 (0)