diff --git a/CHANGELOG.md b/CHANGELOG.md
index f384e1e10..c8b1ca51f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,22 @@
Details changes in each release of EarlGrey. EarlGrey follows [semantic versioning](http://semver.org/).
+## [1.11.0](https://github.com/google/EarlGrey/tree/1.11.0) (07/21/2017)
+
+```
+Baseline: [XXXXXXX]
++ [XXXXXXX]: XXXXXX
+```
+
+### Enhancements
+* Added support for iOS 11 & Xcode 9.0.
+* Added the `grey_textFieldValue()` matcher for updates to UITextFields with iOS11.
+
+### Bug Fixes
+* Fixed Minor issue that was causing infinitely long touch paths for zero sized areas.
+* Grammatical and Language Fixes.
+* Refactored FunctionalTests tests for adding iOS 11 support.
+
## [1.10.1](https://github.com/google/EarlGrey/tree/1.10.1) (07/14/2017)
```
diff --git a/EarlGrey-Info.plist b/EarlGrey-Info.plist
index 4dfc47f8b..27d6149df 100644
--- a/EarlGrey-Info.plist
+++ b/EarlGrey-Info.plist
@@ -13,9 +13,9 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 1.10.1
+ 1.11.0
CFBundleVersion
- 1.10.1
+ 1.11.0
license
diff --git a/EarlGrey.podspec.json b/EarlGrey.podspec.json
index 9f9774de4..0504b75b3 100644
--- a/EarlGrey.podspec.json
+++ b/EarlGrey.podspec.json
@@ -18,7 +18,7 @@
// frameworks in the app bundle need to include bitcode.
{
"name": "EarlGrey",
- "version": "1.10.1",
+ "version": "1.11.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",
@@ -34,7 +34,7 @@
},
"requires_arc": true,
"source": {
- "http": "https://www.github.com/google/EarlGrey/releases/download/1.10.1/EarlGrey.zip"
+ "http": "https://www.github.com/google/EarlGrey/releases/download/1.11.0/EarlGrey.zip"
},
"frameworks": [
"CoreData",
diff --git a/docs/versions.md b/docs/versions.md
index 4d6037062..da2e8b422 100644
--- a/docs/versions.md
+++ b/docs/versions.md
@@ -31,3 +31,4 @@ EarlGrey Release Version | Corresponding E
[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
+[1.11.0](https://github.com/google/EarlGrey/releases/tag/1.11.0) | [1.11.0](https://rubygems.org/gems/earlgrey/versions/1.11.0) | 1.0.0
diff --git a/gem/lib/earlgrey/version.rb b/gem/lib/earlgrey/version.rb
index 71aaef855..4113bb148 100644
--- a/gem/lib/earlgrey/version.rb
+++ b/gem/lib/earlgrey/version.rb
@@ -14,5 +14,5 @@
# limitations under the License.
module EarlGrey
- VERSION = '1.10.1'.freeze unless defined? ::EarlGrey::VERSION
+ VERSION = '1.11.0'.freeze unless defined? ::EarlGrey::VERSION
end