From 9e5f6001507eac3a1e672cd1c4bbf4ebabfca9ec Mon Sep 17 00:00:00 2001
From: twmht <qrnnis2623891@gmail.com>
Date: Fri, 24 Mar 2017 01:02:46 +0800
Subject: [PATCH] bump to 0.6.1

---
 README.rst | 7 ++++---
 setup.py   | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/README.rst b/README.rst
index 4957a9f..e07570b 100644
--- a/README.rst
+++ b/README.rst
@@ -20,8 +20,9 @@ Quick install for debian/ubuntu like linux distributions.
     $ apt-get install build-essential libsnappy-dev zlib1g-dev libbz2-dev libgflags-dev
     $ git clone https://github.com/facebook/rocksdb.git
     $ cd rocksdb
-    $ make shared_lib
-    $ export CPLUS_INCLUDE_PATH=${CPLUS_INCLUDE_PATH}:`pwd`/include
+    $ make build && cd build
+    $ cmake ..
+    $ export CPLUS_INCLUDE_PATH=${CPLUS_INCLUDE_PATH}:`pwd`/../include
     $ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:`pwd`
     $ export LIBRARY_PATH=${LIBRARY_PATH}:`pwd`
 
@@ -30,7 +31,7 @@ Quick install for debian/ubuntu like linux distributions.
     $ virtualenv pyrocks_test
     $ cd pyrocks_test
     $ . bin/active
-    $ pip install pyrocksdb
+    $ pip install python-rocksdb
 
 
 Quick Usage Guide
diff --git a/setup.py b/setup.py
index 9d37fbe..cbffa97 100644
--- a/setup.py
+++ b/setup.py
@@ -32,7 +32,7 @@ mod1 = Extension(
 
 setup(
     name="python-rocksdb",
-    version='0.6',
+    version='0.6.1',
     description="Python bindings for RocksDB",
     keywords='rocksdb',
     author='Ming Hsuan Tu',
-- 
GitLab