From b646f8805e3a82b3cb9340e3dac6519c06de17ba Mon Sep 17 00:00:00 2001 From: Marc Neudert Date: Sun, 12 Jul 2020 12:54:57 +0200 Subject: [PATCH] Release v0.15.0 --- CHANGELOG.md | 2 +- README.md | 2 +- mix.exs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27d25e6..02222df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v0.15.0-dev +## v0.15.0 (2020-07-12) - Enhancements - Protocol for `%r` is now logged as reported by `Plug.Conn.get_http_protocol/1` diff --git a/README.md b/README.md index 05065cb..e563ba6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ To use the plug in your projects, edit your mix.exs file and add the project as defp deps do [ # ... - {:plug_accesslog, "~> 0.14.0"}, + {:plug_accesslog, "~> 0.15.0"}, # ... ] end diff --git a/mix.exs b/mix.exs index 2ab88c6..b16d3a6 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule Plug.AccessLog.MixProject do [ app: :plug_accesslog, name: "Plug.AccessLog", - version: "0.15.0-dev", + version: "0.15.0", elixir: "~> 1.7", deps: deps(), description: "Plug for writing access logs",