Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update zio, google pubsub and circe #28

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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