Skip to content

Commit

Permalink
update zio, google pubsub and circe
Browse files Browse the repository at this point in the history
  • Loading branch information
rolang committed Aug 5, 2024
1 parent 88013d4 commit 9588456
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ inThisBuild(
url = url("https://github.com/qhquanghuy"),
),
),
zioVersion := "2.1.6",
zioVersion := "2.1.7",
scala213 := _scala2,
scala3 := _scala3,
scalaVersion := _scala2,
Expand Down Expand Up @@ -218,7 +218,7 @@ lazy val zioPubsubSerdeVulcan = (project in file("zio-pubsub-serde-vulcan"))
)
)

val circeVersion = "0.14.8"
val circeVersion = "0.14.9"
lazy val zioPubsubSerdeCirce = crossProject(JVMPlatform, NativePlatform)
.in(file("zio-pubsub-serde-circe"))
.settings(moduleName := "zio-pubsub-serde-circe")
Expand All @@ -232,7 +232,7 @@ lazy val zioPubsubSerdeCirce = crossProject(JVMPlatform, NativePlatform)
)
)

val googleCloudPubsubVersion = "1.131.0"
val googleCloudPubsubVersion = "1.132.0"
lazy val zioPubsubGoogle = (project in file("zio-pubsub-google"))
.settings(moduleName := "zio-pubsub-google")
.dependsOn(zioPubsub.jvm)
Expand Down
9 changes: 4 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ addSbtPlugin("dev.zio" % "zio-sbt-website" % zioSbtVersion)

// need sbt-sonatype version which supports new Sonatype Central API added in v3.11.0 https://github.com/xerial/sbt-sonatype/releases/tag/v3.11.0
// might be removed later once zio-sbt-ci / sbt-ci-release update sbt-sonatype
addSbtPlugin("dev.zio" % "zio-sbt-ci" % zioSbtVersion exclude ("org.xerial.sbt", "sbt-sonatype"))
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.0")
addSbtPlugin("dev.zio" % "zio-sbt-ci" % zioSbtVersion exclude ("org.xerial.sbt", "sbt-sonatype"))
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.0")
addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % zioSbtVersion)

// zio-sbt-ecosystem depends on scala-native 0.5.x which breaks the build, for now only 0.4.x is supported
addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % zioSbtVersion exclude ("org.scala-native", "sbt-scala-native"))
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.4")

addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.1")

Expand Down

0 comments on commit 9588456

Please sign in to comment.