From d831c5c206e734436ed7c91d83a5a4607295531b Mon Sep 17 00:00:00 2001 From: Vince Foley Date: Sun, 17 Jan 2021 22:48:38 -0800 Subject: [PATCH] Bump version 1.5.3 --- CHANGELOG.md | 4 ++++ mix.exs | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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} ]