Prepare the new release name

This commit is contained in:
hofmockel 2014-04-27 19:31:01 +02:00
parent 18cd5c7a4f
commit fef21c8965
3 changed files with 5 additions and 5 deletions

View file

@ -48,16 +48,16 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'pyrocksdb' project = u'pyrocksdb'
copyright = u'2013, sh' copyright = u'2014, sh'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.1' version = '0.2'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.1' release = '0.2'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View file

@ -11,7 +11,7 @@ Python bindings to the C++ interface of http://rocksdb.org/ using cython::
print db.get(b"a") 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:: .. toctree::
:maxdepth: 2 :maxdepth: 2

View file

@ -28,7 +28,7 @@ mod1 = Extension(
setup( setup(
name="pyrocksdb", name="pyrocksdb",
version='0.1', version='0.2',
description="Python bindings for RocksDB", description="Python bindings for RocksDB",
keywords='rocksdb', keywords='rocksdb',
author='Stephan Hofmockel', author='Stephan Hofmockel',