diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eb2dcf..473db59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.5.3 + +- Chore: [Loosen Absinthe version](https://github.com/absinthe-graphql/absinthe_plug/pull/242) + ## v1.5.2 - Bug fix: [Fix a compilation race condition](https://github.com/absinthe-graphql/absinthe_plug/pull/240) in plug options check. diff --git a/mix.exs b/mix.exs index 5b172b6..0f29e50 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Absinthe.Plug.Mixfile do use Mix.Project - @version "1.5.2" + @version "1.5.3" def project do [ @@ -42,8 +42,8 @@ defmodule Absinthe.Plug.Mixfile do defp deps do [ - {:plug, "~> 1.3.2 or ~> 1.4"}, {:absinthe, "~> 1.5"}, + {:plug, "~> 1.4"}, {:jason, ">= 0.0.0", only: [:dev, :test]}, {:ex_doc, "~> 0.20", only: :dev} ]