diff --git a/Cargo.toml b/Cargo.toml
index 89882df1..a991fad6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "juniper"
-version = "0.5.3"
+version = "0.6.0"
 authors = ["Magnus Hallin <mhallin@fastmail.com>"]
 description = "GraphQL server library"
 license = "BSD-2-Clause"
diff --git a/README.md b/README.md
index 9b957d7f..3e95f1e6 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ Add Juniper to your Cargo.toml:
 
 ```toml
 [dependencies]
-juniper = "0.5.3"
+juniper = "0.6.0"
 ```
 
 If you want the Iron integration enabled, you need to enable the `iron-handlers`
@@ -32,7 +32,7 @@ feature flag:
 
 ```toml
 [dependencies]
-juniper = { version = "0.5.3", features = ["iron-handlers"] }
+juniper = { version = "0.6.0", features = ["iron-handlers"] }
 ```
 
 ## Building schemas
@@ -120,6 +120,8 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
 
 ## 1.0 Roadmap
 
+> Version 0.6.0 will probably be re-released as 1.0 to indicate API stability.
+
 The road to 1.0 _focuses_ on two aspects: making sure the API hasn't got any
 obvious dead-ends with respect to probable future features, and improving test
 coverage for general execution. There are some chores that need to be completed