Mobly Release 1.10. (#664)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5c4de1d..a070cb2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,32 @@
 # Mobly Release History
 
 
+## Mobly Release 1.10: Framework and `AndroidDevice` Output Improvements
+
+*This is likely the last major release that preserves Py2 compatibility.*
+
+### New
+* `AndroidDevice` now has a new `is_emulator` property.
+* Better multi-user support in `AndroidDevice`.
+* Standardized logging and output file names.
+* Improvement in `utils.concurrent_exec`.
+* Support class-based decorator on Mobly test methods.
+
+### Breaking Changes
+Due to the standardization of output files for both Mobly and `AndroidDevice`
+controller, if you have custom parser of Mobly outputs, you need to adjust
+your parsing logic to accommodate the changes.
+
+* Major change in output directory structure #650
+* Names of `AndroidDevice`'s output files have been standardized #633
+* Changed multiple references of `test_bed` to `testbed` in code #641
+
+### Fixes
+* `AndroidDevice`'s service manager behavior for reboot and USB disconnect.
+
+[Full list of changes](https://github.com/google/mobly/milestone/23?closed=1)
+
+
 ## Mobly Release 1.9.1: Documentation Fix
 
 Fix readthedocs documentation bug introduced in 1.9.
diff --git a/README.md b/README.md
index 16b0cff..95c873b 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,8 @@
 Mobly is compatible with both *python 3.4+* and *python 2.7*.
 
 NOTE: As part of the bigger [communitiy initiative](https://python3statement.org/),
-we are planning to drop Python 2.7 support at the end of 2019.
+we are planning to drop Python 2.7 support in 2020. Mobly 1.10 is likely the last
+major release to support Python 2.7.
 
 Mobly tests could run on the following platforms:
   - Ubuntu 14.04+
diff --git a/setup.py b/setup.py
index 18d9854..d7eb7bf 100755
--- a/setup.py
+++ b/setup.py
@@ -52,13 +52,13 @@
 def main():
     setuptools.setup(
         name='mobly',
-        version='1.9.1',
+        version='1.10',
         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.9.1',
+        download_url='https://github.com/google/mobly/tarball/1.10',
         packages=setuptools.find_packages(exclude=['tests']),
         include_package_data=False,
         scripts=['tools/sl4a_shell.py', 'tools/snippet_shell.py'],