From 1d5e961952f2c847fc91daae67375b62ad678565 Mon Sep 17 00:00:00 2001 From: Josh Price Date: Sun, 24 Jan 2016 01:57:08 +1100 Subject: [PATCH] Prep for release --- README.md | 10 ++++++---- mix.exs | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8c746ac..71a80ba 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ This [Plug](https://github.com/elixir-lang/plug) allows you to easily mount a Gr 1. Make a new Phoenix app, or add it to your existing app. ```sh - mix phoenix.new hello_graphql --no-ecto + mix phoenix.new hello_graphql cd hello_graphql ``` @@ -33,7 +33,7 @@ This [Plug](https://github.com/elixir-lang/plug) allows you to easily mount a Gr end def deps do - [{:plug_graphql, "~> 0.1.2"}] + [{:plug_graphql, "~> 0.1.3"}] end ``` @@ -98,16 +98,18 @@ This [Plug](https://github.com/elixir-lang/plug) allows you to easily mount a Gr ## Contributions -This is pretty early days, the graphql execution engine needs a lot more work to be useful. +This is pretty early days, the GraphQL Elixir ecosystem needs a lot more work to be useful. However we can't get there without your help, so any questions, bug reports, feedback, feature requests and/or PRs are most welcome! ## Acknowledgements -Thanks and appreciation goes to the following contributors for answering many questions and providing helpful feedback: +Thanks and appreciation goes to the following contributors for PRs, discussions, answering many questions and providing helpful feedback: * Daniel Neighman (https://github.com/hassox) * Chris McCord (https://github.com/chrismccord) +* Aaron Weiker (https://github.com/aweiker) +* James Hiscock (https://github.com/bockit) Thanks also to everyone who has submitted PRs, logged issues, given feedback or asked questions. diff --git a/mix.exs b/mix.exs index d9ef29b..7cd950d 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule GraphQL.Plug.Mixfile do use Mix.Project - @version "0.1.2" + @version "0.1.3" @description "A Plug integration for the Elixir implementation of Facebook's GraphQL" @repo_url "https://github.com/joshprice/plug_graphql"