From 6cd4e7fbf92a025aaed77d1885f262c2d6e1935f Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Thu, 28 Aug 2025 21:52:51 +0900 Subject: [PATCH] Bump minimum Swift Collections version to 1.1.0 The public type `JSONSchema` depends on `OrderedDictionary` from the swift-collections package, and the `Sendable` conformance of `JSONSchema` requires that `OrderedDictionary` also be `Sendable`. The `OrderedDictionary` only gained `Sendable` conformance in version 1.1.0[^1], so we need to require at least that version. [^1: https://github.com/apple/swift-collections/commit/17b6c8f5c79b28595cbd6efb9719582ea4ab240e --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 2b91f64..3bb2776 100644 --- a/Package.swift +++ b/Package.swift @@ -12,7 +12,7 @@ let package = Package( targets: ["JSONSchema"]) ], dependencies: [ - .package(url: "https://github.com/apple/swift-collections.git", from: "1.0.0") + .package(url: "https://github.com/apple/swift-collections.git", from: "1.1.0") ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite.