diff --git a/docs/conf.py b/docs/conf.py
index fdb1fcbf496a84250773cb9ad5b5af573199dd3d..07cb87b867439f48cc1d154a6eb0334ee502d31d 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -57,7 +57,7 @@ copyright = u'2014, sh'
 # The short X.Y version.
 version = '0.6'
 # The full version, including alpha/beta/rc tags.
-release = '0.6.6'
+release = '0.6.7'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/docs/tutorial/index.rst b/docs/tutorial/index.rst
index 22cd4a774f8edc353f3864678f9b04f97f41c6c1..b3a6330c55374f709205305350ef27bb12644055 100644
--- a/docs/tutorial/index.rst
+++ b/docs/tutorial/index.rst
@@ -338,6 +338,7 @@ In this example all keys have a static prefix of len 5. ::
 
     opts = rocksdb.Options()
     opts.prefix_extractor = StaticPrefix()
+    opts.allow_concurrent_memtable_write = False
     opts.memtable_factory = rocksdb.HashSkipListMemtableFactory()
     opts.create_if_missing = True
 
@@ -349,6 +350,7 @@ In this example all keys have a static prefix of len 5. ::
 For initial bulk loads the Vector-MemtableFactory makes sense. ::
 
     opts = rocksdb.Options()
+    opts.allow_concurrent_memtable_write = False
     opts.memtable_factory = rocksdb.VectorMemtableFactory()
     opts.create_if_missing = True
 
diff --git a/setup.py b/setup.py
index 0b3f59c3e29cad904b99b486419285cdebf507e7..4da7daa1d66ac2191d80f83dc2e3853523b8be50 100644
--- a/setup.py
+++ b/setup.py
@@ -32,7 +32,7 @@ mod1 = Extension(
 
 setup(
     name="python-rocksdb",
-    version='0.6.6',
+    version='0.6.7',
     description="Python bindings for RocksDB",
     keywords='rocksdb',
     author='Ming Hsuan Tu',