From c2a10e0d560f47a4ac7a696caa6935b15d86dd6a Mon Sep 17 00:00:00 2001 From: Drusy Date: Mon, 20 Apr 2020 16:18:54 +0200 Subject: [PATCH] Debug log removed --- CHANGELOG.md | 8 ++++++++ SwiftiumTestingKit.xcodeproj/project.pbxproj | 8 ++++---- SwiftiumTestingKit/STKSolo.swift | 1 - 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8e799e..ce33022 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Removed +## [0.6.2](https://github.com/openium/SwiftiumTestingKit/compare/v0.6.2...v0.6.1) +### Added + +### Changed + +### Removed +Debug logs + ## [0.6.1](https://github.com/openium/SwiftiumTestingKit/compare/v0.6.1...v0.6.0) ### Added diff --git a/SwiftiumTestingKit.xcodeproj/project.pbxproj b/SwiftiumTestingKit.xcodeproj/project.pbxproj index 82282ca..b2787de 100644 --- a/SwiftiumTestingKit.xcodeproj/project.pbxproj +++ b/SwiftiumTestingKit.xcodeproj/project.pbxproj @@ -542,7 +542,7 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 6; + CURRENT_PROJECT_VERSION = 7; DEFINES_MODULE = YES; DEVELOPMENT_TEAM = QH6KR5PAQ7; DYLIB_COMPATIBILITY_VERSION = 1; @@ -560,7 +560,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 0.6.1; + MARKETING_VERSION = 0.6.2; PRODUCT_BUNDLE_IDENTIFIER = fr.openium.SwiftiumTestingKit; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; @@ -576,7 +576,7 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 6; + CURRENT_PROJECT_VERSION = 7; DEFINES_MODULE = YES; DEVELOPMENT_TEAM = QH6KR5PAQ7; DYLIB_COMPATIBILITY_VERSION = 1; @@ -594,7 +594,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 0.6.1; + MARKETING_VERSION = 0.6.2; PRODUCT_BUNDLE_IDENTIFIER = fr.openium.SwiftiumTestingKit; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; diff --git a/SwiftiumTestingKit/STKSolo.swift b/SwiftiumTestingKit/STKSolo.swift index b2483a6..42ab924 100644 --- a/SwiftiumTestingKit/STKSolo.swift +++ b/SwiftiumTestingKit/STKSolo.swift @@ -140,7 +140,6 @@ public class STKSolo: NSObject { public func waitFor(text: String) -> Bool { let cleanedText = accessibilityCleaned(text: text) - print("Cleaned: \(cleanedText)") let element = waitForAccessibilityElement { $0.accessibilityLabel == cleanedText } return element != nil }