Mobly Release 1.7.1. (#410)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 47fca72..f254c5e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,19 @@
 # Mobly release history
 
+
+## 1.7.1: Bug Fixes
+
+### New
+  * Allow setting up logger before test class execution. Useful for suites.
+
+### Fixes
+  * Fix recording of `teardown_class` failures in new output format.
+  * Properly handle calling `asserts.abort_all` in `on_fail`.
+  * Minor fixes for Windows support.
+
+[Full list of changes.](https://github.com/google/mobly/milestone/14?closed=1)
+
+
 ## 1.7: Expectation APIs and Instrumentation Test Runner
 
 ### New
diff --git a/setup.py b/setup.py
index 3464a80..3da01db 100755
--- a/setup.py
+++ b/setup.py
@@ -60,13 +60,13 @@
 def main():
     setuptools.setup(
         name='mobly',
-        version='1.7',
+        version='1.7.1',
         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',
+        download_url = 'https://github.com/google/mobly/tarball/1.7.1',
         packages=setuptools.find_packages(),
         include_package_data=False,
         scripts=['tools/sl4a_shell.py', 'tools/snippet_shell.py'],