Skip to content

Commit 4a544a8

Browse files
tirodkarkhandpur
authored andcommitted
Add necessary files for the 1.15.1 release
1 parent b15a131 commit 4a544a8

File tree

6 files changed

+23
-6
lines changed

6 files changed

+23
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

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

5+
## [1.15.1](https://github.com/google/EarlGrey/tree/1.15.1) (05/17/2019)
6+
```
7+
Baseline: [b15a131]
8+
+ [b15a131]: Fix TrustKit swizzling issues in Earl Grey
9+
```
10+
11+
### Bug Fixes
12+
* Accessibility fix added for device tests on 12.1.
13+
* Fix TrustKit swizzling with proxy delegates for NSURlSession.
14+
* Fixed Swift 5.0 wrappers.
15+
16+
### Compatibility
17+
* EarlGrey has now been tested for working till Xcode version 10.1 and Swift 5.
18+
519
## [1.15.0](https://github.com/google/EarlGrey/tree/1.15.0) (08/03/2018)
620
```
721
Baseline: [59ce3b6c]

EarlGrey-Info.plist

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@
1313
<key>CFBundlePackageType</key>
1414
<string>FMWK</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>1.15.0</string>
16+
<string>1.15.1</string>
1717
<key>CFBundleVersion</key>
18-
<string>1.15.0</string>
18+
<string>1.15.1</string>
19+
<key>LSApplicationCategoryType</key>
20+
<string></string>
1921
<key>license</key>
2022
<string>
2123

EarlGrey.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EarlGrey",
3-
"version": "1.15.0",
3+
"version": "1.15.1",
44
"summary": "iOS UI Automation Test Framework",
55
"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).",
66
"homepage": "http://google.github.io/EarlGrey",
@@ -16,7 +16,7 @@
1616
},
1717
"requires_arc": true,
1818
"source": {
19-
"http": "https://www.github.com/google/EarlGrey/releases/download/1.15.0/EarlGrey.zip"
19+
"http": "https://www.github.com/google/EarlGrey/releases/download/1.15.1/EarlGrey.zip"
2020
},
2121
"frameworks": [
2222
"CoreData",

docs/install-and-run.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ and that you keep your EarlGrey version synced to the latest.
8383

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

86-
`echo 'github "google/EarlGrey" "1.15.0"' >> Cartfile.private`
86+
`echo 'github "google/EarlGrey" "1.15.1"' >> Cartfile.private`
8787

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

docs/versions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ From 1.9.3, we updated the version number of the EarlGrey gem to be in sync with
77

88
EarlGrey Release Version | Corresponding EarlGrey Gem Version | Minimum Supported CocoaPods Version
99
---------------------------------------------------------------|---------------------------------------------------------------|---------------------------------------------------------------
10+
[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
1011
[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
1112
[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
1213
[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

gem/lib/earlgrey/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
# limitations under the License.
1515

1616
module EarlGrey
17-
VERSION = '1.15.0'.freeze unless defined? ::EarlGrey::VERSION
17+
VERSION = '1.15.1'.freeze unless defined? ::EarlGrey::VERSION
1818
end

0 commit comments

Comments
 (0)