Skip to content

Commit

Permalink
Add necessary files for the 1.15.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tirodkar authored and khandpur committed May 18, 2019
1 parent b15a131 commit 4a544a8
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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

## [1.15.1](https://github.com/google/EarlGrey/tree/1.15.1) (05/17/2019)
```
Baseline: [b15a131]
+ [b15a131]: Fix TrustKit swizzling issues in Earl Grey
```

### Bug Fixes
* Accessibility fix added for device tests on 12.1.
* Fix TrustKit swizzling with proxy delegates for NSURlSession.
* Fixed Swift 5.0 wrappers.

### Compatibility
* EarlGrey has now been tested for working till Xcode version 10.1 and Swift 5.

## [1.15.0](https://github.com/google/EarlGrey/tree/1.15.0) (08/03/2018)
```
Baseline: [59ce3b6c]
Expand Down
6 changes: 4 additions & 2 deletions EarlGrey-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.15.0</string>
<string>1.15.1</string>
<key>CFBundleVersion</key>
<string>1.15.0</string>
<string>1.15.1</string>
<key>LSApplicationCategoryType</key>
<string></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
@@ -1,6 +1,6 @@
{
"name": "EarlGrey",
"version": "1.15.0",
"version": "1.15.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 @@ -16,7 +16,7 @@
},
"requires_arc": true,
"source": {
"http": "https://www.github.com/google/EarlGrey/releases/download/1.15.0/EarlGrey.zip"
"http": "https://www.github.com/google/EarlGrey/releases/download/1.15.1/EarlGrey.zip"
},
"frameworks": [
"CoreData",
Expand Down
2 changes: 1 addition & 1 deletion docs/install-and-run.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ and that you keep your EarlGrey version synced to the latest.

Note that you can also use "master" instead of a release tag.

`echo 'github "google/EarlGrey" "1.15.0"' >> Cartfile.private`
`echo 'github "google/EarlGrey" "1.15.1"' >> Cartfile.private`

3. Update to latest EarlGrey revision and create Cartfile.resolved.

Expand Down
1 change: 1 addition & 0 deletions docs/versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ From 1.9.3, we updated the version number of the EarlGrey gem to be in sync with

EarlGrey Release Version | Corresponding EarlGrey Gem Version | Minimum Supported CocoaPods Version
---------------------------------------------------------------|---------------------------------------------------------------|---------------------------------------------------------------
[1.15.1](https://github.com/google/EarlGrey/releases/tag/1.15.1) | [1.14.0](https://rubygems.org/gems/earlgrey/versions/1.15.1) | 1.0.0
[1.15.0](https://github.com/google/EarlGrey/releases/tag/1.15.0) | [1.14.0](https://rubygems.org/gems/earlgrey/versions/1.15.0) | 1.0.0
[1.14.0](https://github.com/google/EarlGrey/releases/tag/1.14.0) | [1.14.0](https://rubygems.org/gems/earlgrey/versions/1.14.0) | 1.0.0
[1.13.0](https://github.com/google/EarlGrey/releases/tag/1.13.0) | [1.13.0](https://rubygems.org/gems/earlgrey/versions/1.13.0) | 1.0.0
Expand Down
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.15.0'.freeze unless defined? ::EarlGrey::VERSION
VERSION = '1.15.1'.freeze unless defined? ::EarlGrey::VERSION
end

0 comments on commit 4a544a8

Please sign in to comment.