Mobly Release 1.11. (#761)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index ea7d102..61bbb3e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,26 @@
 # Mobly Release History
 
 
+## Mobly Release 1.11: Py2 Deprecation and Repeat/Retry Support
+
+This release focuses on code quality improvement, refactoring, and legacy
+code removal.
+
+Py2-specific workarounds and deprecated APIs are removed in this release.
+We are also refactoring to use 2-space indentation and unit test system.
+
+### New
+* Framework support for test case level `repeat` and `retry`.
+
+### Breaking Changes
+* Removal of Py2 support
+* Removal of the `monsoon` controller
+
+### Fixes
+* Various improvements in Android device controller
+* More metadata collected for test runs
+
+
 ## Mobly Release 1.10.1: Incremental fixes
 
 This release contains minor fixes and improvements.
diff --git a/setup.py b/setup.py
index 686f614..a1f91e6 100755
--- a/setup.py
+++ b/setup.py
@@ -44,13 +44,13 @@
 def main():
   setuptools.setup(
       name='mobly',
-      version='1.10.1',
+      version='1.11',
       maintainer='Ang Li',
       maintainer_email='mobly-github@googlegroups.com',
       description='Automation framework for special end-to-end test cases',
       license='Apache2.0',
       url='https://github.com/google/mobly',
-      download_url='https://github.com/google/mobly/tarball/1.10.1',
+      download_url='https://github.com/google/mobly/tarball/1.11',
       packages=setuptools.find_packages(exclude=['tests']),
       include_package_data=False,
       scripts=['tools/sl4a_shell.py', 'tools/snippet_shell.py'],