Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: google/EarlGrey
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: tirodkar/EarlGrey
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Nov 5, 2019

  1. Copy the full SHA
    4921eae View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 EarlGrey.podspec.json
  2. +1 −1 docs/install-and-run.md
  3. +1 −1 gem/lib/earlgrey/version.rb
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.1",
"version": "1.16.0",
"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",
@@ -16,7 +16,7 @@
},
"requires_arc": true,
"source": {
"http": "https://www.github.com/google/EarlGrey/releases/download/1.15.1/EarlGrey.zip"
"http": "https://www.github.com/google/EarlGrey/releases/download/1.16.0/EarlGrey.zip"
},
"frameworks": [
"CoreData",
2 changes: 1 addition & 1 deletion docs/install-and-run.md
Original file line number Diff line number Diff line change
@@ -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.1"' >> Cartfile.private`
`echo 'github "google/EarlGrey" "1.16.0"' >> Cartfile.private`

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

2 changes: 1 addition & 1 deletion gem/lib/earlgrey/version.rb
Original file line number Diff line number Diff line change
@@ -14,5 +14,5 @@
# limitations under the License.

module EarlGrey
VERSION = '1.15.1'.freeze unless defined? ::EarlGrey::VERSION
VERSION = '1.16.0'.freeze unless defined? ::EarlGrey::VERSION
end