diff --git a/Package.resolved b/Package.resolved index c24a1e6..03d1cf0 100644 --- a/Package.resolved +++ b/Package.resolved @@ -6,8 +6,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/swift-server/async-http-client.git", "state" : { - "revision" : "efb14fec9f79f3f8d4f2a6c0530303efb6fe6533", - "version" : "1.29.1" + "revision" : "c464bf94eac4273cad7424307a5dc7e44e361905", + "version" : "1.30.1" } }, { @@ -16,7 +16,7 @@ "location" : "https://github.com/mcrich23/container", "state" : { "branch" : "add-command-option-group-function-macro", - "revision" : "b2c9b52ff001a5978c041bb1589b8ec06eca8c52" + "revision" : "7787d78682bf7f5325f7656ba8a79d6b8deaa137" } }, { @@ -24,8 +24,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/containerization.git", "state" : { - "revision" : "bec1008f4de1e416ea0e112b57b2357875ec7d25", - "version" : "0.13.0" + "revision" : "c45fef7278394e386d3fbb4c52e9e18613e049b7", + "version" : "0.16.0" } }, { @@ -69,8 +69,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-asn1.git", "state" : { - "revision" : "40d25bbb2fc5b557a9aa8512210bded327c0f60d", - "version" : "1.5.0" + "revision" : "810496cf121e525d660cd0ea89a758740476b85f", + "version" : "1.5.1" } }, { @@ -78,8 +78,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-async-algorithms.git", "state" : { - "revision" : "042e1c4d9d19748c9c228f8d4ebc97bb1e339b0b", - "version" : "1.0.4" + "revision" : "6c050d5ef8e1aa6342528460db614e9770d7f804", + "version" : "1.1.1" } }, { @@ -96,8 +96,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-certificates.git", "state" : { - "revision" : "c399f90e7bbe8874f6cbfda1d5f9023d1f5ce122", - "version" : "1.15.1" + "revision" : "133a347911b6ad0fc8fe3bf46ca90c66cff97130", + "version" : "1.17.0" } }, { @@ -132,8 +132,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-http-structured-headers.git", "state" : { - "revision" : "a9f3c352f4d46afd155e00b3c6e85decae6bcbeb", - "version" : "1.5.0" + "revision" : "76d7627bd88b47bf5a0f8497dd244885960dde0b", + "version" : "1.6.0" } }, { @@ -150,8 +150,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-log.git", "state" : { - "revision" : "ce592ae52f982c847a4efc0dd881cc9eb32d29f2", - "version" : "1.6.4" + "revision" : "ca538143e2dc2b5996c34b9322a1ed9def1d7747", + "version" : "1.7.0" } }, { @@ -159,8 +159,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-nio.git", "state" : { - "revision" : "a24771a4c228ff116df343c85fcf3dcfae31a06c", - "version" : "2.88.0" + "revision" : "663ddc80f2081c8f22e417cbac5f80270a93795e", + "version" : "2.91.0" } }, { @@ -168,8 +168,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-nio-extras.git", "state" : { - "revision" : "b87fdbf492c8fd5ac860e642c714d2d24156990a", - "version" : "1.30.0" + "revision" : "7ee281d816fa8e5f3967a2c294035a318ea551c7", + "version" : "1.31.0" } }, { @@ -177,8 +177,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-nio-http2.git", "state" : { - "revision" : "5e9e99ec96c53bc2c18ddd10c1e25a3cd97c55e5", - "version" : "1.38.0" + "revision" : "c2ba4cfbb83f307c66f5a6df6bb43e3c88dfbf80", + "version" : "1.39.0" } }, { @@ -195,8 +195,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-nio-transport-services.git", "state" : { - "revision" : "df6c28355051c72c884574a6c858bc54f7311ff9", - "version" : "1.25.2" + "revision" : "60c3e187154421171721c1a38e800b390680fb5d", + "version" : "1.26.0" } }, { diff --git a/Sources/Container-Compose/Application.swift b/Sources/Container-Compose/Application.swift index f95ac3e..ba71490 100644 --- a/Sources/Container-Compose/Application.swift +++ b/Sources/Container-Compose/Application.swift @@ -19,7 +19,7 @@ import ArgumentParser public struct Main: AsyncParsableCommand { private static let commandName: String = "container-compose" - private static let version: String = "v0.6.1" + private static let version: String = "v0.7.0" public static var versionString: String { "\(commandName) version \(version)" } diff --git a/Tests/Container-Compose-DynamicTests/ComposeUpTests.swift b/Tests/Container-Compose-DynamicTests/ComposeUpTests.swift index ec09f14..ae75e55 100644 --- a/Tests/Container-Compose-DynamicTests/ComposeUpTests.swift +++ b/Tests/Container-Compose-DynamicTests/ComposeUpTests.swift @@ -21,7 +21,7 @@ import ContainerClient import TestHelpers @testable import ContainerComposeCore -@Suite("Compose Up Tests - Real-World Compose Files", .containerDependent) +@Suite("Compose Up Tests - Real-World Compose Files", .containerDependent, .serialized) struct ComposeUpTests { @Test("Test WordPress with MySQL compose file")