From b5e420b88d86ba3a8625fd7e787261f7dcc414f3 Mon Sep 17 00:00:00 2001 From: Aditya Atul Tirodkar Date: Fri, 9 Sep 2016 15:45:22 -0700 Subject: [PATCH] Update Changelog, Info Plist and gem version for 1.3.0 (#266) [ci skip] --- CHANGELOG.md | 38 +++++++++++++++++++++++++++++++++++++ EarlGrey-Info.plist | 4 ++-- gem/lib/earlgrey/version.rb | 2 +- 3 files changed, 41 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95610c160..7111a073d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,44 @@ Details changes in each release of EarlGrey. EarlGrey follows [semantic versioning](http://semver.org/). +## [1.3.0](https://github.com/google/EarlGrey/tree/1.3.0) (09/09/2016) + +``` +Baseline: [6b2f329] + + [6b2f329]: Add fixes for documentation. +``` + +### Compatibility +* Requires iOS 8 as the minimum deployment target. +* Has been tested for support till iOS 10 beta 4. + +### New Features + +* The following new matchers were added EarlGrey: + * `grey_selected`: Checks if a UIControl is selected. + * `grey_accessibilityFocused`: Checks if a UI element is focused by accessibility technologies + like Voiceover or Switch Control. + +### Enhancements +* Added an API to find the `XCTestCase` status through an EarlGrey test run. +* Improved the failure description in the failure handler. +* Made the `EarlGrey.swift` file syntax swiftier. +* Improved Unit and Functional test coverage. + +### Bug Fixes +* Fixed Travis issue with the Ruby version. +* Minor documentation and syntax fixes. + +### Deprecations +* `grey_elementAtIndex` has been removed in favor of the `atIndex:` interaction API. For migrating + your tests, please follow the announcement + [here](https://groups.google.com/forum/#!topic/earlgrey-discuss/Q6RhxRhtRvo). + +### Contributors +Special thanks to [axi0mX](https://github.com/axi0mX), +[bootstraponline](https://github.com/bootstraponline), +[KazuCocoa](https://github.com/KazuCocoa) and the rest of our contributors. + ## [1.2.0](https://github.com/google/EarlGrey/tree/1.2.0) (08/31/2016) ``` diff --git a/EarlGrey-Info.plist b/EarlGrey-Info.plist index edeccd958..b952f9fd8 100644 --- a/EarlGrey-Info.plist +++ b/EarlGrey-Info.plist @@ -31,8 +31,8 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.2.0 + 1.3.0 CFBundleVersion - 1.2.0 + 1.3.0 diff --git a/gem/lib/earlgrey/version.rb b/gem/lib/earlgrey/version.rb index 96f07e580..6968fcf1c 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.0.9'.freeze unless defined? ::EarlGrey::VERSION + VERSION = '0.0.11'.freeze unless defined? ::EarlGrey::VERSION end