From dd8b4786ac7794e4a1cdd233879fb22635547a8e Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 2 Jul 2026 21:50:43 +0000 Subject: [PATCH] Update magnolify-bigquery to 0.9.5 --- build.sbt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 5eac17eb..a02b026f 100644 --- a/build.sbt +++ b/build.sbt @@ -32,7 +32,7 @@ val bigqueryVersion = "v2-rev20251012-2.0.0" // keep in sync with scio val guavaVersion = "33.1.0-jre" // keep in sync with scio + beam val jacksonVersion = "2.15.4" // keep in sync with scio val jodaTimeVersion = "2.14.0" // keep in sync with scio -val magnolifyVersion = "0.9.4" // keep in sync with scio +val magnolifyVersion = "0.9.5" // keep in sync with scio val parquetVersion = "1.17.0" // keep in sync with scio val protoBufVersion = "4.33.0" // keep in sync with scio val scalaTestVersion = "3.2.20" @@ -116,8 +116,13 @@ lazy val releaseSettings = Seq( publishMavenStyle := true, Test / publishArtifact := false, publishTo := { - val centralSnapshots = "https://central.sonatype.com/repository/maven-snapshots/" - val staging = Some(Resolver.file("local-staging", (ThisBuild / baseDirectory).value / "target" / "sonatype-staging" / version.value)) + val centralSnapshots = "https://central.sonatype.com/repository/maven-snapshots/" + val staging = Some( + Resolver.file( + "local-staging", + (ThisBuild / baseDirectory).value / "target" / "sonatype-staging" / version.value + ) + ) if (isSnapshot.value) Some("central-snapshots" at centralSnapshots) else staging },