Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit 2e568d9

Browse files
author
Josh Price
committed
Bump to 0.2.0
1 parent 0bdd601 commit 2e568d9

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
## 0.2.0 (2016-03-19)
4+
5+
* Enhancements
6+
* Use GraphQL 0.2.0
7+
* Require Elixir 1.2 and above
8+
* GraphiQL 0.6.1
9+
* Ability to pass in predefined queries

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This [Plug](https://github.com/elixir-lang/plug) allows you to easily mount a Gr
3333
end
3434
3535
def deps do
36-
[{:plug_graphql, "~> 0.1.5"}]
36+
[{:plug_graphql, "~> 0.2"}]
3737
end
3838
```
3939

mix.exs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule GraphQL.Plug.Mixfile do
22
use Mix.Project
33

4-
@version "0.1.5"
4+
@version "0.2.0"
55

66
@description "A Plug integration for GraphQL Elixir"
77
@repo_url "https://github.com/graphql-elixir/plug_graphql"
@@ -29,10 +29,11 @@ defmodule GraphQL.Plug.Mixfile do
2929
{:earmark, "~> 0.1", only: :dev},
3030
{:ex_doc, "~> 0.11", only: :dev},
3131
{:mix_test_watch, "~> 0.2", only: :dev},
32+
3233
{:cowboy, "~> 1.0"},
3334
{:plug, "~> 0.14 or ~> 1.0"},
34-
{:poison, "~> 1.5 or ~> 2.0", override: true},
35-
{:graphql, "~> 0.1.2"}]
35+
{:poison, "~> 1.5 or ~> 2.0"},
36+
{:graphql, "~> 0.2"}]
3637
end
3738

3839
defp package do

mix.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"earmark": {:hex, :earmark, "0.1.19"},
77
"ex_doc": {:hex, :ex_doc, "0.11.0"},
88
"fs": {:hex, :fs, "0.9.2"},
9-
"graphql": {:hex, :graphql, "0.1.2"},
9+
"graphql": {:hex, :graphql, "0.2.0"},
1010
"mix_test_watch": {:hex, :mix_test_watch, "0.2.6"},
1111
"plug": {:hex, :plug, "1.0.2"},
1212
"poison": {:hex, :poison, "1.5.2"},

test/graphql/plug/common_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ defmodule GraphQL.Plug.CommonTest do
155155
end
156156

157157
test "GET with variables ignores invalid variables string", context do
158-
success = ~S({"data":{"greeting":"Hello, !"}})
158+
success = ~S({"data":{"greeting":"Hello, world!"}})
159159
query = "query hi($name: String) { greeting(name: $name) }"
160160

161161
Enum.map(context.plugs, fn(test_plug) ->

0 commit comments

Comments
 (0)