From 6a35cf211e2d232f2acb68ca3827e1ef03bd1ded Mon Sep 17 00:00:00 2001 From: Bartosz Janda Date: Thu, 29 Jun 2017 13:34:01 +0200 Subject: [PATCH] Prepare release 1.2.0 --- AutoMate-AppBuddy.podspec | 2 +- AutoMate-AppBuddy.xcodeproj/project.pbxproj | 8 ++------ AutoMate-AppBuddy/Info.plist | 2 +- Changelog.md | 6 ++++++ README.md | 1 + docs/index.html | 1 + 6 files changed, 12 insertions(+), 8 deletions(-) diff --git a/AutoMate-AppBuddy.podspec b/AutoMate-AppBuddy.podspec index b27671c..6f644e5 100644 --- a/AutoMate-AppBuddy.podspec +++ b/AutoMate-AppBuddy.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "AutoMate-AppBuddy" - s.version = "1.1.0" + s.version = "1.2.0" s.summary = "Helper framework for writing UI automation tests with AutoMate." s.homepage = "https://github.com/PGSSoft/AutoMate-AppBuddy" s.license = { :type => 'MIT', :file => 'LICENSE' } diff --git a/AutoMate-AppBuddy.xcodeproj/project.pbxproj b/AutoMate-AppBuddy.xcodeproj/project.pbxproj index 88810c6..570f78d 100644 --- a/AutoMate-AppBuddy.xcodeproj/project.pbxproj +++ b/AutoMate-AppBuddy.xcodeproj/project.pbxproj @@ -706,7 +706,6 @@ buildSettings = { CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CODE_SIGN_IDENTITY = ""; - CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -729,7 +728,6 @@ buildSettings = { CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CODE_SIGN_IDENTITY = ""; - CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -753,7 +751,6 @@ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CODE_SIGN_IDENTITY = "-"; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -776,7 +773,6 @@ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CODE_SIGN_IDENTITY = "-"; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -816,7 +812,7 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1.1.0; + CURRENT_PROJECT_VERSION = 1.2.0; DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; @@ -870,7 +866,7 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1.1.0; + CURRENT_PROJECT_VERSION = 1.2.0; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; diff --git a/AutoMate-AppBuddy/Info.plist b/AutoMate-AppBuddy/Info.plist index 9c590b8..d7fb954 100644 --- a/AutoMate-AppBuddy/Info.plist +++ b/AutoMate-AppBuddy/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.1.0 + 1.2.0 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/Changelog.md b/Changelog.md index f4617b3..92e6708 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,11 @@ # Changelog +## [1.2.0](https://github.com/PGSSoft/AutoMate/releases/tag/1.2.0) +Released on XXXX-XX-XX. + +#### Added +- Information whether the application is running in the UI test environment. + ## [1.1.0](https://github.com/PGSSoft/AutoMate/releases/tag/1.1.0) Released on 2017-03-29. diff --git a/README.md b/README.md index e4f2d8d..0b24303 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,7 @@ Full documentation is available at [https://pgssoft.github.io/AutoMate-AppBuddy/ launchEnvironmentManager.add(handler: defaultEventKitHander, for: .events) launchEnvironmentManager.add(handler: defaultEventKitHander, for: .reminders) launchEnvironmentManager.add(handler: defaultContactsHander, for: .contacts) + launchEnvironmentManager.add(handler: defaultIsInUITestHandler, for: .isInUITest) launchEnvironmentManager.add(handler: AnimationHandler(), for: .animation) launchEnvironmentManager.setup() ``` diff --git a/docs/index.html b/docs/index.html index c9c4144..386bd42 100644 --- a/docs/index.html +++ b/docs/index.html @@ -192,6 +192,7 @@

Usage

launchEnvironmentManager.add(handler: defaultEventKitHander, for: .events) launchEnvironmentManager.add(handler: defaultEventKitHander, for: .reminders) launchEnvironmentManager.add(handler: defaultContactsHander, for: .contacts) +launchEnvironmentManager.add(handler: defaultIsInUITestHandler, for: .isInUITest) launchEnvironmentManager.add(handler: AnimationHandler(), for: .animation) launchEnvironmentManager.setup()