From ec7f0b464eb9b0a80c141f8b8123bb6fc6600cc8 Mon Sep 17 00:00:00 2001 From: Nick Cooke <36927374+ncooke3@users.noreply.github.com> Date: Thu, 4 Apr 2024 17:40:57 -0400 Subject: [PATCH] [Release] Update Firestore's binary deps in Package.swift --- Package.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index 3869db5fb7b..14eeb9fe54d 100644 --- a/Package.swift +++ b/Package.swift @@ -1379,7 +1379,7 @@ func abseilDependency() -> Package.Dependency { } else { packageInfo = ( "https://github.com/google/abseil-cpp-binary.git", - "1.2024011601.0" ..< "1.2024011700.0" + "1.2024011601.1" ..< "1.2024011700.0" ) } @@ -1394,7 +1394,7 @@ func grpcDependency() -> Package.Dependency { if ProcessInfo.processInfo.environment["FIREBASE_SOURCE_FIRESTORE"] != nil { packageInfo = ("https://github.com/grpc/grpc-ios.git", "1.62.3" ..< "1.63.0") } else { - packageInfo = ("https://github.com/google/grpc-binary.git", "1.62.1" ..< "1.63.0") + packageInfo = ("https://github.com/google/grpc-binary.git", "1.62.2" ..< "1.63.0") } return .package(url: packageInfo.url, packageInfo.range)