We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5d8ab2 commit b5cd455Copy full SHA for b5cd455
1 file changed
mix.exs
@@ -41,8 +41,14 @@ defmodule Appsignal.Phoenix.MixProject do
41
42
phoenix_live_view_version =
43
case Version.compare(system_version, "1.12.0") do
44
- :lt -> ">= 0.9.0 and < 0.18.0"
45
- _ -> "~> 0.9 or ~> 1.0"
+ :lt ->
+ ">= 0.9.0 and < 0.18.0"
46
+
47
+ _ ->
48
+ case Version.compare(system_version, "1.14.0") do
49
+ :lt -> "~> 0.9 or ~> 1.0.0"
50
+ _ -> "~> 0.9 or ~> 1.0"
51
+ end
52
end
53
54
credo_version =
0 commit comments