Current section

22 Versions

Jump to

Compare versions

3 files changed
+5 additions
-5 deletions
  @@ -4,7 +4,7 @@
4 4 <<"OpentelemetryAbsinthe is a OpenTelemetry instrumentation library for Absinthe.">>}.
5 5 {<<"elixir">>,<<"~> 1.10">>}.
6 6 {<<"files">>,
7 - [<<"lib">>,<<"lib/helpers.ex">>,<<"lib/opentelemetry_absinthe.ex">>,
7 + [<<"lib">>,<<"lib/opentelemetry_absinthe.ex">>,<<"lib/helpers.ex">>,
8 8 <<"lib/instrumentation.ex">>,<<".formatter.exs">>,<<"mix.exs">>,
9 9 <<"README.md">>]}.
10 10 {<<"licenses">>,[<<"MIT">>]}.
  @@ -32,4 +32,4 @@
32 32 {<<"optional">>,false},
33 33 {<<"repository">>,<<"hexpm">>},
34 34 {<<"requirement">>,<<"~> 0.4 or ~> 1.0.0">>}]]}.
35 - {<<"version">>,<<"1.0.0-rc.6">>}.
35 + {<<"version">>,<<"1.0.0-rc.7">>}.
  @@ -36,14 +36,14 @@ defmodule OpentelemetryAbsinthe.Instrumentation do
36 36 :telemetry.attach(
37 37 {__MODULE__, :operation_start},
38 38 [:absinthe, :execute, :operation, :start],
39 - &handle_operation_start/4,
39 + &__MODULE__.handle_operation_start/4,
40 40 config
41 41 )
42 42
43 43 :telemetry.attach(
44 44 {__MODULE__, :operation_stop},
45 45 [:absinthe, :execute, :operation, :stop],
46 - &handle_operation_stop/4,
46 + &__MODULE__.handle_operation_stop/4,
47 47 config
48 48 )
49 49 end
  @@ -4,7 +4,7 @@ defmodule OpentelemetryAbsinthe.MixProject do
4 4 def project do
5 5 [
6 6 app: :opentelemetry_absinthe,
7 - version: "1.0.0-rc.6",
7 + version: "1.0.0-rc.7",
8 8 elixir: "~> 1.10",
9 9 start_permanent: Mix.env() == :prod,
10 10 deps: deps(),