Skip to content

Commit 10da324

Browse files
fhunlethmobileoverlord
authored andcommitted
v0.6.0 release
1 parent 7b0b2de commit 10da324

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## v0.6.0
4+
5+
Important: `RingLogger.tail` is now `RingLogger.next`. `RingLogger.tail` shows
6+
the last n lines of the log (default is 10).
7+
8+
* New features
9+
* `grep` greps the whole log entry rather than just the message portion. You
10+
can `grep` on timestamps and message levels now.
11+
* Functions that print log messages do the printing in the caller's context so
12+
that printing timeouts don't happen in RingLogger GenServers calls.
13+
* Added `:none` as a per-module log level to completely silence a module.
14+
* Added `:pager` option to specify a custom printer for the interactive
15+
commands.
16+
317
## v0.5.0
418

519
* New features

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule RingLogger.MixProject do
44
def project do
55
[
66
app: :ring_logger,
7-
version: "0.5.0",
7+
version: "0.6.0",
88
elixir: "~> 1.4",
99
start_permanent: Mix.env() == :prod,
1010
description: description(),

0 commit comments

Comments
 (0)