Skip to content

Commit

Permalink
Update Changelog, Info Plist and gem version for 1.3.0 (google#266) […
Browse files Browse the repository at this point in the history
…ci skip]
  • Loading branch information
tirodkar authored and khandpur committed Sep 9, 2016
1 parent 6b2f329 commit b5e420b
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 3 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

```
Expand Down
4 changes: 2 additions & 2 deletions EarlGrey-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.2.0</string>
<string>1.3.0</string>
<key>CFBundleVersion</key>
<string>1.2.0</string>
<string>1.3.0</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion gem/lib/earlgrey/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b5e420b

Please sign in to comment.