diff --git a/Externals/Nimble b/Externals/Nimble index a873511f1..c1f3dd662 160000 --- a/Externals/Nimble +++ b/Externals/Nimble @@ -1 +1 @@ -Subproject commit a873511f12efb458a73ef9c3f22dd84ed9369b81 +Subproject commit c1f3dd66222d5e7a1a20afc237f7e7bc432c564f diff --git a/Package.resolved b/Package.resolved index 7178b7aa1..8195362a4 100644 --- a/Package.resolved +++ b/Package.resolved @@ -5,8 +5,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/mattgallagher/CwlCatchException.git", "state" : { - "revision" : "f809deb30dc5c9d9b78c872e553261a61177721a", - "version" : "2.0.0" + "revision" : "3b123999de19bf04905bc1dfdb76f817b0f2cc00", + "version" : "2.1.2" } }, { @@ -14,8 +14,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/mattgallagher/CwlPreconditionTesting.git", "state" : { - "revision" : "c21f7bab5ca8eee0a9998bbd17ca1d0eb45d4688", - "version" : "2.1.0" + "revision" : "dc9af4781f2afdd1e68e90f80b8603be73ea7abc", + "version" : "2.2.0" } }, { @@ -23,8 +23,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/Quick/Nimble.git", "state" : { - "revision" : "ecade0f20e58e55ba3e5f110b701dad88fd40170", - "version" : "12.0.0" + "revision" : "c1f3dd66222d5e7a1a20afc237f7e7bc432c564f", + "version" : "13.2.0" } } ], diff --git a/Package@swift-5.9.swift b/Package@swift-5.9.swift new file mode 100644 index 000000000..4ede9072f --- /dev/null +++ b/Package@swift-5.9.swift @@ -0,0 +1,64 @@ +// swift-tools-version:5.9 + +import PackageDescription + +let package = Package( + name: "Quick", + platforms: [ + .macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .visionOS(.v1) + ], + products: [ + .library(name: "Quick", targets: ["Quick"]), + ], + dependencies: [ + .package(url: "https://github.com/Quick/Nimble.git", from: "13.2.0"), + ], + targets: { + var targets: [Target] = [ + .testTarget( + name: "QuickTests", + dependencies: [ "Quick", "Nimble" ], + exclude: [ + "QuickAfterSuiteTests/AfterSuiteTests+ObjC.m", + "QuickFocusedTests/FocusedTests+ObjC.m", + "QuickTests/FunctionalTests/ObjC", + "QuickTests/Helpers/QCKSpecRunner.h", + "QuickTests/Helpers/QCKSpecRunner.m", + "QuickTests/Helpers/QuickTestsBridgingHeader.h", + "QuickTests/QuickConfigurationTests.m", + "QuickFocusedTests/Info.plist", + "QuickTests/Info.plist", + "QuickAfterSuiteTests/Info.plist", + ] + ), + .testTarget( + name: "QuickIssue853RegressionTests", + dependencies: [ "Quick" ] + ), + ] +#if os(macOS) + targets.append(contentsOf: [ + .target(name: "QuickObjCRuntime", dependencies: []), + .target( + name: "Quick", + dependencies: [ "QuickObjCRuntime" ], + exclude: [ + "Info.plist", + ] + ), + ]) +#else + targets.append(contentsOf: [ + .target( + name: "Quick", + dependencies: [], + exclude: [ + "Info.plist" + ] + ), + ]) +#endif + return targets + }(), + swiftLanguageVersions: [.v5] +) diff --git a/Quick.podspec b/Quick.podspec index 943018d61..0495cf80d 100644 --- a/Quick.podspec +++ b/Quick.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Quick" - s.version = "7.3.1" + s.version = "7.4.0" s.summary = "The Swift (and Objective-C) testing framework." s.description = <<-DESC @@ -14,6 +14,7 @@ Pod::Spec.new do |s| s.ios.deployment_target = "13.0" s.osx.deployment_target = "10.15" s.tvos.deployment_target = '13.0' + s.visionos.deployment_target = '1.0' s.source = { :git => "https://github.com/Quick/Quick.git", :tag => "v#{s.version}" } s.source_files = "Sources/**/*.{swift,h,m}" diff --git a/Quick.xcodeproj/project.pbxproj b/Quick.xcodeproj/project.pbxproj index ade9a7e0a..6d54e4ef8 100644 --- a/Quick.xcodeproj/project.pbxproj +++ b/Quick.xcodeproj/project.pbxproj @@ -1099,13 +1099,13 @@ MTL_ENABLE_DEBUG_INFO = YES; PRODUCT_BUNDLE_IDENTIFIER = "io.quick.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = "$(TARGET_NAME)"; - SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx"; + SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator"; SUPPORTS_MACCATALYST = YES; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; SWIFT_OBJC_BRIDGING_HEADER = Tests/QuickTests/QuickTests/Helpers/QuickTestsBridgingHeader.h; SWIFT_OBJC_INTERFACE_HEADER_NAME = "QuickAfterSuiteTests-Swift.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2,3"; + TARGETED_DEVICE_FAMILY = "1,2,3,7"; }; name = Debug; }; @@ -1123,14 +1123,14 @@ MTL_ENABLE_DEBUG_INFO = NO; PRODUCT_BUNDLE_IDENTIFIER = "io.quick.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = "$(TARGET_NAME)"; - SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx"; + SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator"; SUPPORTS_MACCATALYST = YES; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OBJC_BRIDGING_HEADER = Tests/QuickTests/QuickTests/Helpers/QuickTestsBridgingHeader.h; SWIFT_OBJC_INTERFACE_HEADER_NAME = "QuickAfterSuiteTests-Swift.h"; SWIFT_OPTIMIZATION_LEVEL = "-O"; - TARGETED_DEVICE_FAMILY = "1,2,3"; + TARGETED_DEVICE_FAMILY = "1,2,3,7"; }; name = Release; }; @@ -1166,13 +1166,13 @@ METAL_ENABLE_DEBUG_INFO = YES; PRODUCT_BUNDLE_IDENTIFIER = "io.quick.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME)"; - SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx"; + SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator"; SUPPORTS_MACCATALYST = YES; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; SWIFT_OBJC_BRIDGING_HEADER = Tests/QuickTests/QuickTests/Helpers/QuickTestsBridgingHeader.h; SWIFT_OBJC_INTERFACE_HEADER_NAME = "QuickTests-Swift.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2,3"; + TARGETED_DEVICE_FAMILY = "1,2,3,7"; }; name = Debug; }; @@ -1190,14 +1190,14 @@ METAL_ENABLE_DEBUG_INFO = NO; PRODUCT_BUNDLE_IDENTIFIER = "io.quick.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME)"; - SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx"; + SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator"; SUPPORTS_MACCATALYST = YES; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OBJC_BRIDGING_HEADER = Tests/QuickTests/QuickTests/Helpers/QuickTestsBridgingHeader.h; SWIFT_OBJC_INTERFACE_HEADER_NAME = "QuickTests-Swift.h"; SWIFT_OPTIMIZATION_LEVEL = "-O"; - TARGETED_DEVICE_FAMILY = "1,2,3"; + TARGETED_DEVICE_FAMILY = "1,2,3,7"; }; name = Release; }; @@ -1219,13 +1219,13 @@ MTL_ENABLE_DEBUG_INFO = YES; PRODUCT_BUNDLE_IDENTIFIER = "io.quick.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = "$(TARGET_NAME)"; - SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx"; + SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator"; SUPPORTS_MACCATALYST = YES; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; SWIFT_OBJC_BRIDGING_HEADER = Tests/QuickTests/QuickTests/Helpers/QuickTestsBridgingHeader.h; SWIFT_OBJC_INTERFACE_HEADER_NAME = "QuickFocusedTests-Swift.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2,3"; + TARGETED_DEVICE_FAMILY = "1,2,3,7"; }; name = Debug; }; @@ -1243,14 +1243,14 @@ MTL_ENABLE_DEBUG_INFO = NO; PRODUCT_BUNDLE_IDENTIFIER = "io.quick.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = "$(TARGET_NAME)"; - SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx"; + SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator"; SUPPORTS_MACCATALYST = YES; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OBJC_BRIDGING_HEADER = Tests/QuickTests/QuickTests/Helpers/QuickTestsBridgingHeader.h; SWIFT_OBJC_INTERFACE_HEADER_NAME = "QuickFocusedTests-Swift.h"; SWIFT_OPTIMIZATION_LEVEL = "-O"; - TARGETED_DEVICE_FAMILY = "1,2,3"; + TARGETED_DEVICE_FAMILY = "1,2,3,7"; }; name = Release; }; @@ -1318,6 +1318,7 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; WATCHOS_DEPLOYMENT_TARGET = 6.0; + XROS_DEPLOYMENT_TARGET = 1.0; }; name = Debug; }; @@ -1378,6 +1379,7 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; WATCHOS_DEPLOYMENT_TARGET = 6.0; + XROS_DEPLOYMENT_TARGET = 1.0; }; name = Release; }; @@ -1408,11 +1410,11 @@ PRODUCT_MODULE_NAME = Quick; PRODUCT_NAME = Quick; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx"; + SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator"; SUPPORTS_MACCATALYST = YES; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; SWIFT_OBJC_BRIDGING_HEADER = ""; - TARGETED_DEVICE_FAMILY = "1,2,3"; + TARGETED_DEVICE_FAMILY = "1,2,3,7"; }; name = Debug; }; @@ -1443,13 +1445,13 @@ PRODUCT_MODULE_NAME = Quick; PRODUCT_NAME = Quick; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx"; + SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator"; SUPPORTS_MACCATALYST = YES; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OBJC_BRIDGING_HEADER = ""; SWIFT_OPTIMIZATION_LEVEL = "-O"; - TARGETED_DEVICE_FAMILY = "1,2,3"; + TARGETED_DEVICE_FAMILY = "1,2,3,7"; }; name = Release; }; @@ -1471,13 +1473,13 @@ METAL_ENABLE_DEBUG_INFO = YES; PRODUCT_BUNDLE_IDENTIFIER = "io.quick.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME)"; - SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx"; + SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator"; SUPPORTS_MACCATALYST = YES; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; SWIFT_OBJC_BRIDGING_HEADER = Tests/QuickTests/QuickTests/Helpers/QuickTestsBridgingHeader.h; SWIFT_OBJC_INTERFACE_HEADER_NAME = "QuickTests-Swift.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2,3"; + TARGETED_DEVICE_FAMILY = "1,2,3,7"; }; name = Debug; }; @@ -1495,14 +1497,14 @@ METAL_ENABLE_DEBUG_INFO = NO; PRODUCT_BUNDLE_IDENTIFIER = "io.quick.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME)"; - SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx"; + SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator"; SUPPORTS_MACCATALYST = YES; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OBJC_BRIDGING_HEADER = Tests/QuickTests/QuickTests/Helpers/QuickTestsBridgingHeader.h; SWIFT_OBJC_INTERFACE_HEADER_NAME = "QuickTests-Swift.h"; SWIFT_OPTIMIZATION_LEVEL = "-O"; - TARGETED_DEVICE_FAMILY = "1,2,3"; + TARGETED_DEVICE_FAMILY = "1,2,3,7"; }; name = Release; }; diff --git a/Rakefile b/Rakefile index 72de27f28..7b17a871a 100644 --- a/Rakefile +++ b/Rakefile @@ -13,7 +13,7 @@ end namespace "podspec" do desc "Run lint for podspec" task :lint do - run "bundle exec pod lib lint" + run "bundle exec pod lib lint --platforms=ios,tvos,macos" end end @@ -47,6 +47,12 @@ namespace "test" do run "set -o pipefail && MACH_O_TYPE=staticlib xcodebuild -workspace Quick.xcworkspace -scheme Quick OTHER_SWIFT_FLAGS='$(inherited) -suppress-warnings' clean #{xcode_action} | xcpretty" end + desc "Run unit tests for all visionOS targets" + task :visionos do |t| + run "set -o pipefail && xcodebuild -workspace Quick.xcworkspace -scheme Quick -destination 'generic/platform=visionOS' OTHER_SWIFT_FLAGS='$(inherited) -suppress-warnings' clean build | xcpretty" + run "set -o pipefail && xcodebuild -workspace Quick.xcworkspace -scheme Quick -destination 'platform=visionOS Simulator,name=Apple Vision Pro' OTHER_SWIFT_FLAGS='$(inherited) -suppress-warnings' clean #{xcode_action} | xcpretty" + end + desc "Run unit tests for the current platform built by the Swift Package Manager" task :swiftpm do |t| run "swift package clean && swift test -Xswiftc -suppress-warnings" diff --git a/docs/Classes.html b/docs/Classes.html index 0f8b0b63a..ae36f7077 100644 --- a/docs/Classes.html +++ b/docs/Classes.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -769,7 +769,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/AsyncBehavior.html b/docs/Classes/AsyncBehavior.html index 71072013a..6016cce0a 100644 --- a/docs/Classes/AsyncBehavior.html +++ b/docs/Classes/AsyncBehavior.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -342,7 +342,7 @@ Parameters - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/AsyncExample.html b/docs/Classes/AsyncExample.html index b60e154d3..442c7ae47 100644 --- a/docs/Classes/AsyncExample.html +++ b/docs/Classes/AsyncExample.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -382,7 +382,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/AsyncExampleGroup.html b/docs/Classes/AsyncExampleGroup.html index d1e8d4eb4..77f57c14d 100644 --- a/docs/Classes/AsyncExampleGroup.html +++ b/docs/Classes/AsyncExampleGroup.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -320,7 +320,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/AsyncSpec.html b/docs/Classes/AsyncSpec.html index 4d821944c..56454b05c 100644 --- a/docs/Classes/AsyncSpec.html +++ b/docs/Classes/AsyncSpec.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -468,7 +468,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/Behavior.html b/docs/Classes/Behavior.html index 8ce8f98f8..4c9484bd5 100644 --- a/docs/Classes/Behavior.html +++ b/docs/Classes/Behavior.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -342,7 +342,7 @@ Parameters - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/Callsite.html b/docs/Classes/Callsite.html index f8414429f..c953011a3 100644 --- a/docs/Classes/Callsite.html +++ b/docs/Classes/Callsite.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -348,7 +348,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/Example.html b/docs/Classes/Example.html index d11db551e..8696da140 100644 --- a/docs/Classes/Example.html +++ b/docs/Classes/Example.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -379,7 +379,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/ExampleBase.html b/docs/Classes/ExampleBase.html index f3cdc5d06..5ee03bb56 100644 --- a/docs/Classes/ExampleBase.html +++ b/docs/Classes/ExampleBase.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -355,7 +355,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/ExampleGroup.html b/docs/Classes/ExampleGroup.html index 8843ed786..86e52e12b 100644 --- a/docs/Classes/ExampleGroup.html +++ b/docs/Classes/ExampleGroup.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -339,7 +339,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/ExampleMetadata.html b/docs/Classes/ExampleMetadata.html index ea09b19e1..f2b18e79c 100644 --- a/docs/Classes/ExampleMetadata.html +++ b/docs/Classes/ExampleMetadata.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -321,7 +321,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/QCKConfiguration.html b/docs/Classes/QCKConfiguration.html index 857576a9e..da48bb743 100644 --- a/docs/Classes/QCKConfiguration.html +++ b/docs/Classes/QCKConfiguration.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -944,7 +944,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/QuickConfiguration.html b/docs/Classes/QuickConfiguration.html index 887763f12..64a06b64a 100644 --- a/docs/Classes/QuickConfiguration.html +++ b/docs/Classes/QuickConfiguration.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -288,7 +288,7 @@ QuickConfiguration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/QuickTestSuite.html b/docs/Classes/QuickTestSuite.html index 56e984dc5..24b9fc7de 100644 --- a/docs/Classes/QuickTestSuite.html +++ b/docs/Classes/QuickTestSuite.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -337,7 +337,7 @@ Return Value - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions.html b/docs/Extensions.html index 2c9b4b2e8..3dd3f8bc1 100644 --- a/docs/Extensions.html +++ b/docs/Extensions.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -309,7 +309,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Functions.html b/docs/Functions.html index 33c055cb5..bd93d9cc0 100644 --- a/docs/Functions.html +++ b/docs/Functions.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -289,7 +289,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols.html b/docs/Protocols.html index b0f05bf5b..55a966cdf 100644 --- a/docs/Protocols.html +++ b/docs/Protocols.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -313,7 +313,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/AsyncDSLUser.html b/docs/Protocols/AsyncDSLUser.html index 6363dd2db..6676149db 100644 --- a/docs/Protocols/AsyncDSLUser.html +++ b/docs/Protocols/AsyncDSLUser.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -1415,7 +1415,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/SyncDSLUser.html b/docs/Protocols/SyncDSLUser.html index 2ec3dda69..cc5a94c0a 100644 --- a/docs/Protocols/SyncDSLUser.html +++ b/docs/Protocols/SyncDSLUser.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -1846,7 +1846,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Structs.html b/docs/Structs.html index 37e0bb714..06f51b525 100644 --- a/docs/Structs.html +++ b/docs/Structs.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -336,7 +336,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Structs/StopTest.html b/docs/Structs/StopTest.html index cae780da0..4d5ecc002 100644 --- a/docs/Structs/StopTest.html +++ b/docs/Structs/StopTest.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -481,7 +481,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Structs/TestState.html b/docs/Structs/TestState.html index b9553b818..a90fd8652 100644 --- a/docs/Structs/TestState.html +++ b/docs/Structs/TestState.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -392,7 +392,7 @@ Parameters - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Typealiases.html b/docs/Typealiases.html index 5273ab0b9..3ea985c6d 100644 --- a/docs/Typealiases.html +++ b/docs/Typealiases.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -1166,7 +1166,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes.html index 0f8b0b63a..ae36f7077 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -769,7 +769,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncBehavior.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncBehavior.html index 71072013a..6016cce0a 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncBehavior.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncBehavior.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -342,7 +342,7 @@ Parameters - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncExample.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncExample.html index b60e154d3..442c7ae47 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncExample.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncExample.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -382,7 +382,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncExampleGroup.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncExampleGroup.html index d1e8d4eb4..77f57c14d 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncExampleGroup.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncExampleGroup.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -320,7 +320,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncSpec.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncSpec.html index 4d821944c..56454b05c 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncSpec.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/AsyncSpec.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -468,7 +468,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Behavior.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Behavior.html index 8ce8f98f8..4c9484bd5 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Behavior.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Behavior.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -342,7 +342,7 @@ Parameters - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Callsite.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Callsite.html index f8414429f..c953011a3 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Callsite.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Callsite.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -348,7 +348,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Example.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Example.html index d11db551e..8696da140 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Example.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/Example.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -379,7 +379,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleBase.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleBase.html index f3cdc5d06..5ee03bb56 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleBase.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleBase.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -355,7 +355,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleGroup.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleGroup.html index 8843ed786..86e52e12b 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleGroup.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleGroup.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -339,7 +339,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleMetadata.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleMetadata.html index ea09b19e1..f2b18e79c 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleMetadata.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/ExampleMetadata.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -321,7 +321,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QCKConfiguration.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QCKConfiguration.html index 857576a9e..da48bb743 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QCKConfiguration.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QCKConfiguration.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -944,7 +944,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QuickConfiguration.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QuickConfiguration.html index 887763f12..64a06b64a 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QuickConfiguration.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QuickConfiguration.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -288,7 +288,7 @@ QuickConfiguration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QuickTestSuite.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QuickTestSuite.html index 56e984dc5..24b9fc7de 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QuickTestSuite.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Classes/QuickTestSuite.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -337,7 +337,7 @@ Return Value - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Extensions.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Extensions.html index 2c9b4b2e8..3dd3f8bc1 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Extensions.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Extensions.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -309,7 +309,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Functions.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Functions.html index 33c055cb5..bd93d9cc0 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Functions.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Functions.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -289,7 +289,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols.html index b0f05bf5b..55a966cdf 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -313,7 +313,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols/AsyncDSLUser.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols/AsyncDSLUser.html index 6363dd2db..6676149db 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols/AsyncDSLUser.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols/AsyncDSLUser.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -1415,7 +1415,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols/SyncDSLUser.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols/SyncDSLUser.html index 2ec3dda69..cc5a94c0a 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols/SyncDSLUser.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Protocols/SyncDSLUser.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -1846,7 +1846,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs.html index 37e0bb714..06f51b525 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -336,7 +336,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs/StopTest.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs/StopTest.html index cae780da0..4d5ecc002 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs/StopTest.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs/StopTest.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -481,7 +481,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs/TestState.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs/TestState.html index b9553b818..a90fd8652 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs/TestState.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Structs/TestState.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -392,7 +392,7 @@ Parameters - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/Typealiases.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/Typealiases.html index 5273ab0b9..3ea985c6d 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/Typealiases.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/Typealiases.html @@ -17,7 +17,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -1166,7 +1166,7 @@ Declaration - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/docsets/Quick.docset/Contents/Resources/Documents/index.html b/docs/docsets/Quick.docset/Contents/Resources/Documents/index.html index 4fb3c1745..78b909ee6 100644 --- a/docs/docsets/Quick.docset/Contents/Resources/Documents/index.html +++ b/docs/docsets/Quick.docset/Contents/Resources/Documents/index.html @@ -16,7 +16,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -363,7 +363,7 @@ License - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/index.html b/docs/index.html index 4fb3c1745..78b909ee6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -16,7 +16,7 @@ - Quick 7.3.1 Docs (83% documented) + Quick 7.4.0 Docs (83% documented) View on GitHub @@ -363,7 +363,7 @@ License - © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17) + © 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/script/release b/script/release index fb6636f6f..1cf8cd355 100755 --- a/script/release +++ b/script/release @@ -45,6 +45,12 @@ if [ -z "`which $GH`" ]; then die "gh (github CLI) is required to produce a release. Install with brew using 'brew install gh'. Aborting." fi +if [ "$POD" =~ ^bundle.* ]; then + echo " > Running bundle install to verify that you have up-to-date depedencies" + bundle install + echo " > Ruby dependencies are up to date." +fi + echo " > Verifying you are authenticated with the github CLI" $GH auth status > /dev/null || die "You are not authenticated with the github CLI. Please authenticate using '$GH auth login'." echo " > Logged in with github CLI" @@ -99,7 +105,7 @@ git config --get user.signingkey > /dev/null || { echo " > Found PGP key for git" # Veify cocoapods trunk ownership -pod trunk me | grep -q "$POD_NAME" || die "You do not have access to pod repository $POD_NAME. Aborting." +$POD trunk me | grep -q "$POD_NAME" || die "You do not have access to pod repository $POD_NAME. Aborting." echo " > Verified ownership to $POD_NAME pod" echo "--- Releasing version $VERSION (tag: $VERSION_TAG)..."
Quick 7.3.1 Docs (83% documented)
Quick 7.4.0 Docs (83% documented)
View on GitHub
© 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-17)
© 2024 Quick Contributors. All rights reserved. (Last updated: 2024-01-23)
Generated by jazzy ♪♫ v0.14.4, a Realm project.