Commit 2cbe843 1 parent 1668465 commit 2cbe843 Copy full SHA for 2cbe843
File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
This project follows [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
4
4
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
+
5
19
## v0.9.0
6
20
7
21
This latest release removes support for Elixir versions before 1.9.
Original file line number Diff line number Diff line change 1
1
defmodule RingLogger.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.9 .0"
4
+ @ version "0.10 .0"
5
5
@ source_url "https://github.com/nerves-project/ring_logger"
6
6
7
7
def project do
You can’t perform that action at this time.
0 commit comments