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 f259224Copy full SHA for f259224
1 file changed
mix.exs
@@ -40,9 +40,18 @@ defmodule Appsignal.Phoenix.MixProject do
40
system_version = System.version()
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"
+ case Version.compare(system_version, "1.14.0") do
+ :lt ->
+ "~> 0.9 or ~> 1.0.0"
46
+
47
+ _ ->
48
+ case Version.compare(system_version, "1.12.0") do
49
50
+ ">= 0.9.0 and < 0.18.0"
51
52
53
+ "~> 0.9 or ~> 1.0"
54
+ end
55
end
56
57
credo_version =
0 commit comments