diff --git a/docs/conf.py b/docs/conf.py index 02eeb64..4435390 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,16 +48,16 @@ master_doc = 'index' # General information about the project. project = u'pyrocksdb' -copyright = u'2013, sh' +copyright = u'2014, sh' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.1' +version = '0.2' # The full version, including alpha/beta/rc tags. -release = '0.1' +release = '0.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index 263fe3f..c3afeb7 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -11,7 +11,7 @@ Python bindings to the C++ interface of http://rocksdb.org/ using cython:: print db.get(b"a") -Tested with python2.7 and python3.3 and RocksDB version 2.7.fb +Tested with python2.7 and python3.3 and RocksDB version 2.8.fb .. toctree:: :maxdepth: 2 diff --git a/setup.py b/setup.py index 83ccb22..07fe344 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ mod1 = Extension( setup( name="pyrocksdb", - version='0.1', + version='0.2', description="Python bindings for RocksDB", keywords='rocksdb', author='Stephan Hofmockel',