From 03cea27bd0ec1f519f5659cb0c67776494b0b9f2 Mon Sep 17 00:00:00 2001 From: Self-hosted Renovate Bot <361546+cgrindel-self-hosted-renovate[bot]@users.noreply.github.enterprise.com> Date: Thu, 8 Feb 2024 15:10:41 +0000 Subject: [PATCH] chore(deps): update dependency com_github_apple_swift_collections to v1.1.0 --- examples/http_archive_ext_deps/WORKSPACE | 6 +++--- examples/http_archive_ext_deps/extensions.bzl | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/http_archive_ext_deps/WORKSPACE b/examples/http_archive_ext_deps/WORKSPACE index 0b36bad52..0657f1ca8 100644 --- a/examples/http_archive_ext_deps/WORKSPACE +++ b/examples/http_archive_ext_deps/WORKSPACE @@ -72,9 +72,9 @@ swift_rules_extra_dependencies() http_archive( name = "com_github_apple_swift_collections", build_file = "@//third_party:swift_collections.BUILD.bazel", - sha256 = "876353021246d0b5a131236400ee723ed783e75c853dcc49640576df83779b54", - strip_prefix = "swift-collections-1.0.6", - url = "https://github.com/apple/swift-collections/archive/refs/tags/1.0.6.tar.gz", + sha256 = "59ca5676b2662021f3046becb7824747c002637677b953fc059ee555f1e0b438", + strip_prefix = "swift-collections-1.1.0", + url = "https://github.com/apple/swift-collections/archive/refs/tags/1.1.0.tar.gz", ) # Example of defining Swift targets inline. diff --git a/examples/http_archive_ext_deps/extensions.bzl b/examples/http_archive_ext_deps/extensions.bzl index 108b68e39..b8a38cf75 100644 --- a/examples/http_archive_ext_deps/extensions.bzl +++ b/examples/http_archive_ext_deps/extensions.bzl @@ -5,9 +5,9 @@ def _non_module_deps_impl(_): http_archive( name = "com_github_apple_swift_collections", build_file = "@//third_party:swift_collections.BUILD.bazel", - sha256 = "876353021246d0b5a131236400ee723ed783e75c853dcc49640576df83779b54", - strip_prefix = "swift-collections-1.0.6", - url = "https://github.com/apple/swift-collections/archive/refs/tags/1.0.6.tar.gz", + sha256 = "59ca5676b2662021f3046becb7824747c002637677b953fc059ee555f1e0b438", + strip_prefix = "swift-collections-1.1.0", + url = "https://github.com/apple/swift-collections/archive/refs/tags/1.1.0.tar.gz", ) # Example of defining Swift targets inline.