diff --git a/CHANGELOG.md b/CHANGELOG.md index c557e9b..146e4b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog for Tracing v0.1 +## 0.1.4 (2024-07-12) + +* Add `Tracing.set_current_span/1` function +* Add `Tracing.monitor/1` as shorthand for `Tracing.Monitor.monitor/1` + * Allow `Tracing.monitor/0` to call Monitor for the current span +* Make use of internal Tracing functions + ## 0.1.3 (2024-06-28) * Add `LiveviewTelemetry` telemetry module diff --git a/mix.exs b/mix.exs index 7622882..a9f3e57 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Tracing.MixProject do [ app: :tracing, name: "Tracing", - version: "0.1.3", + version: "0.1.4", elixir: "~> 1.16", compilers: Mix.compilers(), deps: deps(),