Skip to content

Commit

Permalink
Bump to version 2.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdfrens committed Jan 4, 2025
1 parent 567ac6a commit 1da08a5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ defmodule JasonOnlyAppTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "2.2.0"
"version" => "2.2.1"
},
"params" => nil,
"session" => nil
Expand Down Expand Up @@ -88,7 +88,7 @@ defmodule JasonOnlyAppTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "2.2.0"
"version" => "2.2.1"
},
"params" => %{"foo" => 55},
"session" => %{"foo" => 555}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ defmodule PoisonOnlyAppTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "2.2.0"
"version" => "2.2.1"
},
"params" => nil,
"session" => nil
Expand Down Expand Up @@ -89,7 +89,7 @@ defmodule PoisonOnlyAppTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "2.2.0"
"version" => "2.2.1"
},
"params" => %{"foo" => 55},
"session" => %{"foo" => 555}
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Airbrake.Mixfile do
def project do
[
app: :airbrake_client,
version: "2.2.0",
version: "2.2.1",
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
Expand Down
12 changes: 6 additions & 6 deletions test/airbrake/payload_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ defmodule Airbrake.PayloadTest do
notifier: %{
name: "Airbrake Client",
url: "https://github.com/CityBaseInc/airbrake_client",
version: "2.2.0"
version: "2.2.1"
}
} = Payload.new(exception, stacktrace)
end
Expand Down Expand Up @@ -105,7 +105,7 @@ defmodule Airbrake.PayloadTest do
notifier: %{
name: "Airbrake Client",
url: "https://github.com/CityBaseInc/airbrake_client",
version: "2.2.0"
version: "2.2.1"
}
} = Payload.new(@exception, @stacktrace)
end
Expand Down Expand Up @@ -198,7 +198,7 @@ defmodule Airbrake.PayloadTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "2.2.0"
"version" => "2.2.1"
},
"params" => nil,
"session" => nil
Expand Down Expand Up @@ -242,7 +242,7 @@ defmodule Airbrake.PayloadTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "2.2.0"
"version" => "2.2.1"
},
"params" => %{"foo" => 55},
"session" => %{"foo" => 555}
Expand Down Expand Up @@ -281,7 +281,7 @@ defmodule Airbrake.PayloadTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "2.2.0"
"version" => "2.2.1"
},
"params" => nil,
"session" => nil
Expand Down Expand Up @@ -325,7 +325,7 @@ defmodule Airbrake.PayloadTest do
"notifier" => %{
"name" => "Airbrake Client",
"url" => "https://github.com/CityBaseInc/airbrake_client",
"version" => "2.2.0"
"version" => "2.2.1"
},
"params" => %{"foo" => 55},
"session" => %{"foo" => 555}
Expand Down

0 comments on commit 1da08a5

Please sign in to comment.