Skip to content

Commit

Permalink
Version bump to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MvanDiemen committed Jun 28, 2024
1 parent 1606b67 commit 121eef4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 121eef4

Please sign in to comment.