Prepare v2.0.1.
diff --git a/CHANGES.rst b/CHANGES.rst
index 6aeabd3..bf6b13c 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,14 @@
+v2.0.1 (2017-08-11)
+-------------------
+
+- Officially support Python 3.6.
+
+- Move documentation to RTD.
+
+- Documentation: Update import paths for key functions (courtesy of
+  slavkoja).
+
+
 v2.0.0 (2016-10-03)
 -------------------
 
diff --git a/cachetools/__init__.py b/cachetools/__init__.py
index 6469970..54baa46 100644
--- a/cachetools/__init__.py
+++ b/cachetools/__init__.py
@@ -16,7 +16,7 @@
     'cached', 'cachedmethod'
 )
 
-__version__ = '2.0.0'
+__version__ = '2.0.1'
 
 if hasattr(functools.update_wrapper(lambda f: f(), lambda: 42), '__wrapped__'):
     _update_wrapper = functools.update_wrapper