Skip to content

Commit 2cbe843

Browse files
committed
v0.10.0 release
1 parent 1668465 commit 2cbe843

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
@@ -2,6 +2,20 @@
22

33
This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## v0.10.0
6+
7+
This latest release removes support for Elixir versions before 1.11 to fix
8+
deprecation warnings on Elixir 1.15. Elixir 1.11 to 1.14 are officially
9+
supported and Elixir 1.15 will be supported when released.
10+
11+
* Improvements
12+
* Support for syncing the RingBuffer to disk at peridic intervals. This
13+
provides an option between a standard file logger and a fully in-memory log.
14+
This doesn't provide additional history, but does enable logs to survive
15+
reboots (assuming they were saved). It's disabled by default. See the
16+
`:persist_path` and `:persist_seconds` options for details. Thanks to
17+
@oestrich for adding this feature.
18+
519
## v0.9.0
620

721
This latest release removes support for Elixir versions before 1.9.

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule RingLogger.MixProject do
22
use Mix.Project
33

4-
@version "0.9.0"
4+
@version "0.10.0"
55
@source_url "https://github.com/nerves-project/ring_logger"
66

77
def project do

0 commit comments

Comments
 (0)