From cc90601660e6e66bc899f318e9878e1b7307d984 Mon Sep 17 00:00:00 2001 From: Andreas Herrmann Date: Tue, 23 Feb 2021 11:28:20 +0100 Subject: [PATCH] Update protobuf to 3.15.1 This includes a fix for builds on Windows using mingw. See https://github.com/protocolbuffers/protobuf/pull/8286 --- haskell/repositories.bzl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/haskell/repositories.bzl b/haskell/repositories.bzl index 441ef12479..691ecaf2a6 100644 --- a/haskell/repositories.bzl +++ b/haskell/repositories.bzl @@ -63,10 +63,10 @@ def rules_haskell_dependencies(): maybe( http_archive, name = "com_google_protobuf", - sha256 = "d0f5f605d0d656007ce6c8b5a82df3037e1d8fe8b121ed42e536f569dec16113", - strip_prefix = "protobuf-3.14.0", + sha256 = "f18a40816260a9a3190a94efb0fc26270b244a2436681602f0a944739095d632", + strip_prefix = "protobuf-3.15.1", urls = [ - "https://github.com/google/protobuf/archive/v3.14.0.tar.gz", + "https://github.com/google/protobuf/archive/v3.15.1.tar.gz", ], )