From 47a727081f1e26d2a9ee68d6d3b326aa449644cc Mon Sep 17 00:00:00 2001 From: Hao Wu Date: Fri, 21 Apr 2017 12:12:09 -0700 Subject: [PATCH] [CI SKIP] CHANGELOG and plist updates for 1.9.2 --- CHANGELOG.md | 14 ++++++++++++++ EarlGrey-Info.plist | 4 ++-- EarlGrey.podspec.json | 4 ++-- gem/lib/earlgrey/version.rb | 2 +- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b229ac22..1ab5a09f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ Details changes in each release of EarlGrey. EarlGrey follows [semantic versioning](http://semver.org/). +## [1.9.2](https://github.com/google/EarlGrey/tree/1.9.2) (04/21/2017) + +``` +Baseline: [b9d7a7c] + + [b9d7a7c]: Update OS=10.3 for travis CI +``` + +### Bug Fixes +* Fixed timeout related failures from being reported as assertion failures. +* Fixed to wait for rotation to complete before verifying that it changed. +* Fixed Swift breaks by correcting issue with Gem adding EarlGrey.swift for + Objective C targets. +* Fixed race condition with reading and writing to state tracker elementID. + ## [1.9.1](https://github.com/google/EarlGrey/tree/1.9.1) (04/14/2017) ``` diff --git a/EarlGrey-Info.plist b/EarlGrey-Info.plist index 66f55bea6..13df1e1c5 100644 --- a/EarlGrey-Info.plist +++ b/EarlGrey-Info.plist @@ -13,9 +13,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.9.1 + 1.9.2 CFBundleVersion - 1.9.1 + 1.9.2 license diff --git a/EarlGrey.podspec.json b/EarlGrey.podspec.json index e9646bdc5..01007cf3b 100644 --- a/EarlGrey.podspec.json +++ b/EarlGrey.podspec.json @@ -18,7 +18,7 @@ // frameworks in the app bundle need to include bitcode. { "name": "EarlGrey", - "version": "1.9.1", + "version": "1.9.2", "summary": "iOS UI Automation Test Framework", "description": "EarlGrey is a native iOS UI automation test framework that enables you to write clear, concise tests.\\n\\nWith the EarlGrey framework, you have access to enhanced synchronization features. EarlGrey automatically synchronizes with the UI, network requests, and various queues, but still allows you to manually implement customized timings, if needed.\\n\\nEarlGrey’s synchronization features help ensure that the UI is in a steady state before actions are performed. This greatly increases test stability and makes tests highly repeatable.\\n\\nEarlGrey works in conjunction with the XCTest framework and integrates with Xcode’s Test Navigator so you can run tests directly from Xcode or the command line (using xcodebuild).", "homepage": "http://google.github.io/EarlGrey", @@ -34,7 +34,7 @@ }, "requires_arc": true, "source": { - "http": "https://www.github.com/google/EarlGrey/releases/download/1.9.1/EarlGrey.zip" + "http": "https://www.github.com/google/EarlGrey/releases/download/1.9.2/EarlGrey.zip" }, "frameworks": [ "CoreData", diff --git a/gem/lib/earlgrey/version.rb b/gem/lib/earlgrey/version.rb index 7ab537e27..a253c0954 100644 --- a/gem/lib/earlgrey/version.rb +++ b/gem/lib/earlgrey/version.rb @@ -14,5 +14,5 @@ # limitations under the License. module EarlGrey - VERSION = '0.2.0'.freeze unless defined? ::EarlGrey::VERSION + VERSION = '0.2.1'.freeze unless defined? ::EarlGrey::VERSION end