diff --git a/docs/conf.py b/docs/conf.py
index 02eeb64afd31c8021845c544307773e158affd85..443539057363b3ab602c8a7e05d1231ff1cfcbce 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 263fe3f65744e826554fa9f9db265df7a709a107..c3afeb73a872fb7903d3a2a835529ac7f23d7540 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 83ccb2214b5f8d5fa0f3a0da31e22a19ad523eb1..07fe3446ec4e6bff205291189d7771b24ae7092a 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',