v1.6.0
diff --git a/Changes.rst b/Changes.rst
index 9f788fb..925cb17 100644
--- a/Changes.rst
+++ b/Changes.rst
@@ -1,3 +1,19 @@
+Changes for v1.6.0 (2016-10-20)
+===============================
+
+-  Add support for tcsh (#155)
+
+-  Fix handling of unquoted completions containing $ (#154)
+
+-  Don't insert unnecessary leading quote char in completions (#152)
+
+-  Fix parser reuse with positional arguments (#149)
+
+-  Tests: Add simple pexpect tests for bash (#153); Add test case to
+   verify #20 is fixed (#148)
+
+-  Thanks to @davvid and @evanunderscore for their work on this release.
+
 Changes for v1.5.1 (2016-10-11)
 ===============================
 
diff --git a/setup.py b/setup.py
index cf3ab54..8399c8c 100755
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
 
 setup(
     name='argcomplete',
-    version='1.5.1',
+    version='1.6.0',
     url='https://github.com/kislyuk/argcomplete',
     license='Apache Software License',
     author='Andrey Kislyuk',