Skip to content

Commit

Permalink
1.10.1 release change log
Browse files Browse the repository at this point in the history
  • Loading branch information
wuhao5 authored and sid-github committed Jul 14, 2017
1 parent 2abda72 commit f456370
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

Details changes in each release of EarlGrey. EarlGrey follows [semantic versioning](http://semver.org/).

## [1.10.1](https://github.com/google/EarlGrey/tree/1.10.1) (07/14/2017)

```
Baseline: [2abda72]
+ [2abda72]: Modified GREYElementInteraction.m to drain the thread for a timeout.
```

### Enhancements
* Improved GREYAssertion and GREYElementInteraction

## [1.10.0](https://github.com/google/EarlGrey/tree/1.10.0) (07/05/2017)

```
Expand Down
4 changes: 2 additions & 2 deletions EarlGrey-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.10.0</string>
<string>1.10.1</string>
<key>CFBundleVersion</key>
<string>1.10.0</string>
<string>1.10.1</string>
<key>license</key>
<string>
Expand Down
4 changes: 2 additions & 2 deletions EarlGrey.podspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
// frameworks in the app bundle need to include bitcode.
{
"name": "EarlGrey",
"version": "1.10.0",
"version": "1.10.1",
"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",
Expand All @@ -34,7 +34,7 @@
},
"requires_arc": true,
"source": {
"http": "https://www.github.com/google/EarlGrey/releases/download/1.10.0/EarlGrey.zip"
"http": "https://www.github.com/google/EarlGrey/releases/download/1.10.1/EarlGrey.zip"
},
"frameworks": [
"CoreData",
Expand Down
1 change: 1 addition & 0 deletions docs/versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ EarlGrey Release Version | Corresponding E
[1.9.3](https://github.com/google/EarlGrey/releases/tag/1.9.3) | [1.9.3](https://rubygems.org/gems/earlgrey/versions/1.9.3) | 1.0.0
[1.9.4](https://github.com/google/EarlGrey/releases/tag/1.9.4) | [1.9.4](https://rubygems.org/gems/earlgrey/versions/1.9.4) | 1.0.0
[1.10.0](https://github.com/google/EarlGrey/releases/tag/1.10.0) | [1.10.0](https://rubygems.org/gems/earlgrey/versions/1.10.0) | 1.0.0
[1.10.1](https://github.com/google/EarlGrey/releases/tag/1.10.1) | [1.10.1](https://rubygems.org/gems/earlgrey/versions/1.10.1) | 1.0.0
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 = '1.10.0'.freeze unless defined? ::EarlGrey::VERSION
VERSION = '1.10.1'.freeze unless defined? ::EarlGrey::VERSION
end

0 comments on commit f456370

Please sign in to comment.