From 10da324d2bd5ca2afc3e8df614821be62b276bdc Mon Sep 17 00:00:00 2001 From: Frank Hunleth Date: Fri, 19 Oct 2018 17:10:24 -0400 Subject: [PATCH] v0.6.0 release --- CHANGELOG.md | 14 ++++++++++++++ mix.exs | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa52534..4014e67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## v0.6.0 + +Important: `RingLogger.tail` is now `RingLogger.next`. `RingLogger.tail` shows +the last n lines of the log (default is 10). + +* New features + * `grep` greps the whole log entry rather than just the message portion. You + can `grep` on timestamps and message levels now. + * Functions that print log messages do the printing in the caller's context so + that printing timeouts don't happen in RingLogger GenServers calls. + * Added `:none` as a per-module log level to completely silence a module. + * Added `:pager` option to specify a custom printer for the interactive + commands. + ## v0.5.0 * New features diff --git a/mix.exs b/mix.exs index 9f4fc03..fba2f90 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule RingLogger.MixProject do def project do [ app: :ring_logger, - version: "0.5.0", + version: "0.6.0", elixir: "~> 1.4", start_permanent: Mix.env() == :prod, description: description(),