Mobly Release 1.7.5 (#490)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0082c72..f92f9ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,17 +1,27 @@
 # Mobly Release History
 
 
+## Mobly Release 1.7.5: Dependency Cleanup
+
+### Fixes
+* Only install test dependencies when running the unit tests.
+* Allow `CallbackHandler.waitForEvent` to wait for longer than the max rpc
+  timeout.
+
+[Full list of changes.](https://github.com/google/mobly/milestone/19?closed=1)
+
+
 ## Mobly Release 1.7.4: Better debug logs
 Added framework DEBUG level log generated by Mobly:
 * Log test configuration at the beginning.
 * Log boundaries of each execution stage.
 * Log snippet client calls.
 
-## New
+### New
 * Support suffixing test class name in a suite.
 * API to unload a single snippet from `AndroidDevice`.
 
-## Fixes
+### Fixes
 * Fixes in `BaseTestClass`.
 * Fixes for running on Windows.
 
diff --git a/setup.py b/setup.py
index 2bf2b09..9e593a8 100755
--- a/setup.py
+++ b/setup.py
@@ -52,13 +52,13 @@
 def main():
     setuptools.setup(
         name='mobly',
-        version='1.7.4',
+        version='1.7.5',
         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.7.4',
+        download_url='https://github.com/google/mobly/tarball/1.7.5',
         packages=setuptools.find_packages(),
         include_package_data=False,
         scripts=['tools/sl4a_shell.py', 'tools/snippet_shell.py'],