diff --git a/docs/changelog.rst b/docs/changelog.rst
index 1688327d56a75a9d4a8b7e3b1f8c4fbe85aab680..a6cfe4f6d40a2a7f2a5548f941c82a3cf921aa8e 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,13 +1,12 @@
 Changelog
 *********
 
-Upcoming Version
-----------------
+Version 0.3
+-----------
 
-Target is rocksdb 3.0
 
 Version 0.2
-----------------
+-----------
 
 This version works with RocksDB version 2.8.fb. Now you have access to the more
 advanced options of rocksdb. Like changing the memtable or SST representation.
diff --git a/docs/index.rst b/docs/index.rst
index c3afeb73a872fb7903d3a2a835529ac7f23d7540..ffdabd27dcef8e2c206eb5623fcff37dba6961eb 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.8.fb
+Tested with python2.7 and python3.3 and RocksDB version xxxxx
 
 .. toctree::
     :maxdepth: 2
diff --git a/docs/installation.rst b/docs/installation.rst
index 9b298f1787c4a4fc73aae439fb209489aff88fd9..a29414291cf3e41561430a88ddc42b84b7e83927 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -12,7 +12,6 @@ For more details consider https://github.com/facebook/rocksdb/blob/master/INSTAL
     $ apt-get install build-essential
     $ apt-get install libsnappy-dev zlib1g-dev libbz2-dev libgflags-dev
     $ git clone https://github.com/facebook/rocksdb.git
-    $ git checkout 2.8.fb
     $ cd rocksdb
     $ make shared_lib
 
diff --git a/setup.py b/setup.py
index 07fe3446ec4e6bff205291189d7771b24ae7092a..be20354a7989f3216564791776f0203d746ade71 100644
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,7 @@ mod1 = Extension(
 
 setup(
     name="pyrocksdb",
-    version='0.2',
+    version='0.3',
     description="Python bindings for RocksDB",
     keywords='rocksdb',
     author='Stephan Hofmockel',