bump to 0.6.1

This commit is contained in:
twmht 2017-03-24 01:02:46 +08:00
parent 056d62d43d
commit 9e5f600150
2 changed files with 5 additions and 4 deletions

View file

@ -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 $ apt-get install build-essential libsnappy-dev zlib1g-dev libbz2-dev libgflags-dev
$ git clone https://github.com/facebook/rocksdb.git $ git clone https://github.com/facebook/rocksdb.git
$ cd rocksdb $ cd rocksdb
$ make shared_lib $ make build && cd build
$ export CPLUS_INCLUDE_PATH=${CPLUS_INCLUDE_PATH}:`pwd`/include $ cmake ..
$ export CPLUS_INCLUDE_PATH=${CPLUS_INCLUDE_PATH}:`pwd`/../include
$ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:`pwd` $ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:`pwd`
$ export LIBRARY_PATH=${LIBRARY_PATH}:`pwd` $ export LIBRARY_PATH=${LIBRARY_PATH}:`pwd`
@ -30,7 +31,7 @@ Quick install for debian/ubuntu like linux distributions.
$ virtualenv pyrocks_test $ virtualenv pyrocks_test
$ cd pyrocks_test $ cd pyrocks_test
$ . bin/active $ . bin/active
$ pip install pyrocksdb $ pip install python-rocksdb
Quick Usage Guide Quick Usage Guide

View file

@ -32,7 +32,7 @@ mod1 = Extension(
setup( setup(
name="python-rocksdb", name="python-rocksdb",
version='0.6', version='0.6.1',
description="Python bindings for RocksDB", description="Python bindings for RocksDB",
keywords='rocksdb', keywords='rocksdb',
author='Ming Hsuan Tu', author='Ming Hsuan Tu',