From 5390feb3da84d4d1650002d26b2a83cb5931cb23 Mon Sep 17 00:00:00 2001 From: Frank Hunleth Date: Mon, 19 Feb 2018 11:45:32 -0500 Subject: [PATCH] v0.4.0 release --- CHANGELOG.md | 17 +++++++++++------ README.md | 2 +- mix.exs | 2 +- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73c65df..1232e6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,19 @@ -# RingLogger +# Changelog + +## v0.4.0 + +* New features + * Added `grep` + * Automatically add the backend if it's not running when using the IEx helpers ## v0.3.0 Renamed `LoggerCircularBuffer` to `RingLogger` and made backwards incompatible API changes. Please review docs when upgrading. -New features: - - * Simplified use from IEx by autostarting the Client GenServer - * Added support for `tail`ing logs +* New features + * Simplified use from IEx by autostarting the Client GenServer + * Added support for `tail`ing logs ## v0.2.0 @@ -16,4 +21,4 @@ Renamed `LoggerCircularBuffer` to `LoggerCircularBuffer` ## v0.1.0 -Initial Release +Initial release diff --git a/README.md b/README.md index e04656a..2ededa3 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Add `ring_logger` to your projects dependencies in your `mix.exs`: ```elixir def deps do - [{:ring_logger, "~> 0.3.0"}] + [{:ring_logger, "~> 0.4"}] end ``` diff --git a/mix.exs b/mix.exs index 19d712e..4b2c2f3 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule RingLogger.MixProject do def project do [ app: :ring_logger, - version: "0.3.0", + version: "0.4.0", elixir: "~> 1.4", start_permanent: Mix.env() == :prod, description: description(),