From b8858f5d46bae166af570f073341e72e27bfb0d2 Mon Sep 17 00:00:00 2001 From: MikaAK Date: Wed, 11 Oct 2023 16:16:17 -0700 Subject: [PATCH] chore: bump to 1.0.1 --- CHANGELOG.md | 3 +++ mix.exs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d16eb38..165524d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 1.0.1 +- Disable middleware when enabled? false in global config + # 1.0.0 - turn off caching errors by default, you must tune errors to `:all` to retain prior behaviour diff --git a/mix.exs b/mix.exs index 54546b8..1b8f4f6 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule RequestCache.MixProject do def project do [ app: :request_cache_plug, - version: "1.0.0", + version: "1.0.1", elixir: "~> 1.12", description: "Plug to cache requests declaratively for either GraphQL or Phoenix, this plug is intended to short circuit all json/decoding or parsing a server would normally do", start_permanent: Mix.env() == :prod,