Skip to content

Commit

Permalink
v0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth authored and mobileoverlord committed Oct 22, 2018
1 parent 7b0b2de commit 10da324
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 10da324

Please sign in to comment.