From 37fdca9174181a15a33aace431fcd8a98bbbead9 Mon Sep 17 00:00:00 2001 From: Adam Fowler Date: Mon, 22 Jul 2024 10:17:17 +0100 Subject: [PATCH] Make ServiceShape.version optional --- Sources/SotoSmithy/Shapes/ServiceShapes.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SotoSmithy/Shapes/ServiceShapes.swift b/Sources/SotoSmithy/Shapes/ServiceShapes.swift index 38c8f87..090edca 100644 --- a/Sources/SotoSmithy/Shapes/ServiceShapes.swift +++ b/Sources/SotoSmithy/Shapes/ServiceShapes.swift @@ -16,7 +16,7 @@ public class ServiceShape: Shape { public static let type = "service" public var traits: TraitList? - public let version: String + public let version: String? public let operations: [OperationMemberShape]? public let resources: [ResourceMemberShape]? }