From 121eef49731be304a5de683ae84999da6473c3ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20van=20Diemen?= Date: Fri, 28 Jun 2024 14:36:28 +0200 Subject: [PATCH] Version bump to 0.1.3 --- CHANGELOG.md | 5 +++++ README.md | 6 +++--- mix.exs | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6abbbd..c557e9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog for Tracing v0.1 +## 0.1.3 (2024-06-28) + +* Add `LiveviewTelemetry` telemetry module + * add setup option `:liveview` + ## 0.1.2 (2024-06-20) * Fix wrong call when monitor option is passed into `with_span_fn/3`, call `Tracing.Monitor.monitor` instead of diff --git a/README.md b/README.md index bfc94e1..34a931c 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,12 @@ should be activated. ## Installation -The package can be installed by adding `ot` to your list of dependencies in `mix.exs`: +The package can be installed by adding `tracing` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:tracing, "~> 0.1.2"} + {:tracing, "~> 0.1.3"} ] end ``` @@ -39,7 +39,7 @@ defmodule MyApp.Application do ] opts = [...] - Tracing.setup([:phoenix, :oban, :aws, :chromic_pdf]) + Tracing.setup([:phoenix, :liveview, :oban, :aws, :chromic_pdf]) Supervisor.start_link(children, opts) end diff --git a/mix.exs b/mix.exs index e35f448..7622882 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Tracing.MixProject do [ app: :tracing, name: "Tracing", - version: "0.1.2", + version: "0.1.3", elixir: "~> 1.16", compilers: Mix.compilers(), deps: deps(),