diff --git a/README.md b/README.md index 60475b9..62d4c9e 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Set `SWIFTUI_DEBUG_SCAN_VERBOSE=1` for detailed diagnostics: ### Option 1: Swift Package Manager (Recommended) ```swift dependencies: [ - .package(url: "https://github.com/ConsultingMD/swift-ui-debug-scan", from: "0.1.0") + .package(url: "https://github.com/ConsultingMD/swift-ui-debug-scan", from: "0.2.0") ] ``` **Xcode:** `File > Add Packages` → Enter URL above diff --git a/Tests/SwiftUIDebugScanTests/IntegrationTests.swift b/Tests/SwiftUIDebugScanTests/IntegrationTests.swift index 2de0a66..782e328 100644 --- a/Tests/SwiftUIDebugScanTests/IntegrationTests.swift +++ b/Tests/SwiftUIDebugScanTests/IntegrationTests.swift @@ -289,7 +289,7 @@ struct EdgeCaseTests { let endTime = CFAbsoluteTimeGetCurrent() let duration = endTime - startTime - #expect(duration < 0.005, "Long label (\(expectedLength) chars) should not impact performance: \(duration)s") + #expect(duration < 0.01, "Long label (\(expectedLength) chars) should not impact performance: \(duration)s") } }