Skip to content

Commit

Permalink
v0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth committed Feb 19, 2018
1 parent bf8e225 commit 5390feb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
# 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

Renamed `LoggerCircularBuffer` to `LoggerCircularBuffer`

## v0.1.0

Initial Release
Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

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.3.0",
version: "0.4.0",
elixir: "~> 1.4",
start_permanent: Mix.env() == :prod,
description: description(),
Expand Down

0 comments on commit 5390feb

Please sign in to comment.