From 97adcdde73cb1875d9dca16e5c5c117b5154943d Mon Sep 17 00:00:00 2001
From: theduke <reg@theduke.at>
Date: Mon, 28 Aug 2017 08:02:56 +0200
Subject: [PATCH] Update readme: use git dependency in example

This causes confusion currently.

See https://github.com/graphql-rust/juniper_iron/issues/2
---
 README.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 205be16e..ccb0f6fc 100644
--- a/README.md
+++ b/README.md
@@ -42,9 +42,11 @@ juniper_iron = { git = "https://github.com/graphql-rust/juniper_iron" }
 
 If you want Rocket integration, you need to depend on the `juniper_rocket` crate.
 
+**Note**: Until 0.9 is released, you will need to use a Git dependency to the current master branch.
+
 ```toml
 [dependencies]
-juniper = { version = "0.8.1" }
+juniper = { git = "https://github.com/graphql-rust/juniper" }
 juniper_rocket = { git = "https://github.com/graphql-rust/juniper_rocket" }
 ```