Skip to content

Commit 597d196

Browse files
authored
Specify an exact electric version (#11)
Current electric main breaks configuration. If we specify a >= version then the next publish of electric will break this package.
1 parent dff3d5c commit 597d196

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mix.exs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ defmodule Phoenix.Sync.MixProject do
3636
{:plug, "~> 1.0"},
3737
{:jason, "~> 1.0"},
3838
{:ecto_sql, "~> 3.10", optional: true},
39-
{:electric, ">= 1.0.0-beta.20", optional: true},
39+
# require an exact version because electric moves very quickly atm
40+
# and a more generous specification would inevitably break.
41+
{:electric, "== 1.0.0-beta.20", optional: true},
4042
{:electric_client, ">= 0.3.0-beta.4"}
4143
] ++ deps_for_env(Mix.env())
4244
end

0 commit comments

Comments
 (0)