Skip to content

Commit

Permalink
Use LV 1.0-rc
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed May 10, 2024
1 parent 9f1c47a commit 5f106b4
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 35 deletions.
3 changes: 2 additions & 1 deletion installer/templates/phx_single/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ defmodule <%= @app_module %>.MixProject do
{<%= inspect @adapter_app %>, ">= 0.0.0"},<% end %><%= if @html do %>
{:phoenix_html, "~> 4.1"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 0.20.2"},
# TODO bump on release to {:phoenix_live_view, "~> 1.0.0"},
{:phoenix_live_view, "~> 1.0.0-rc.0", override: true},
{:floki, ">= 0.30.0", only: :test},<% end %><%= if @dashboard do %>
{:phoenix_live_dashboard, "~> 0.8.3"},<% end %><%= if @javascript do %>
{:esbuild, "~> 0.8", runtime: Mix.env() == :dev},<% end %><%= if @css do %>
Expand Down
3 changes: 2 additions & 1 deletion installer/templates/phx_umbrella/apps/app_name_web/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ defmodule <%= @web_namespace %>.MixProject do
{:phoenix_ecto, "~> 4.5"},<% end %><%= if @html do %>
{:phoenix_html, "~> 4.1"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 0.20.2"},
# TODO bump on release to {:phoenix_live_view, "~> 1.0.0"},
{:phoenix_live_view, "~> 1.0.0-rc.0", override: true},
{:floki, ">= 0.30.0", only: :test},<% end %><%= if @dashboard do %>
{:phoenix_live_dashboard, "~> 0.8.3"},<% end %><%= if @javascript do %>
{:esbuild, "~> 0.8", runtime: Mix.env() == :dev},<% end %><%= if @css do %>
Expand Down
3 changes: 2 additions & 1 deletion installer/templates/phx_umbrella/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ defmodule <%= @root_app_module %>.MixProject do
[
<%= if @dev or @phoenix_version.pre != [] do %><%= @phoenix_dep_umbrella_root %>,
<% end %># Required to run "mix format" on ~H/.heex files from the umbrella root
{:phoenix_live_view, ">= 0.0.0"}
# TODO bump on release to {:phoenix_live_view, ">= 0.0.0"},
{:phoenix_live_view, "~> 1.0.0-rc.0", override: true}
]<% else %>
[]<% end %>
end
Expand Down
3 changes: 2 additions & 1 deletion integration_test/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ defmodule Phoenix.Integration.MixProject do
{:tds, ">= 0.0.0"},
{:ecto_sqlite3, ">= 0.0.0"},
{:phoenix_html, "~> 4.1"},
{:phoenix_live_view, "~> 0.20.2"},
# TODO bump on release to {:phoenix_live_view, "~> 1.0.0"},
{:phoenix_live_view, "~> 1.0.0-rc.0", override: true},
{:dns_cluster, "~> 0.1.1"},
{:floki, ">= 0.30.0"},
{:phoenix_live_reload, "~> 1.2"},
Expand Down

0 comments on commit 5f106b4

Please sign in to comment.