Skip to content

Commit

Permalink
bump LV to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SteffenDE committed Dec 9, 2024
1 parent b120b0f commit 17c51f3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
/installer/deps/
/installer/doc/
/installer/phx_new-*.ez
/installer/tmp/

/integration_test/_build/
/integration_test/deps/
Expand Down
4 changes: 1 addition & 3 deletions installer/templates/phx_single/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ 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},
# TODO bump on release to {:phoenix_live_view, "~> 1.0.0"},
{:phoenix_live_view,
github: "phoenixframework/phoenix_live_view", ref: "jv-interpol", override: true},
{:phoenix_live_view, "~> 1.0.0"},
{: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
4 changes: 1 addition & 3 deletions installer/templates/phx_umbrella/apps/app_name_web/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ defmodule <%= @web_namespace %>.MixProject do
{:phoenix_ecto, "~> 4.5"},<% end %><%= if @html do %>
{:phoenix_html, "~> 4.1"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
# TODO bump on release to {:phoenix_live_view, "~> 1.0.0"},
{:phoenix_live_view,
github: "phoenixframework/phoenix_live_view", ref: "jv-interpol", override: true},
{:phoenix_live_view, "~> 1.0.0"},
{: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
4 changes: 1 addition & 3 deletions installer/templates/phx_umbrella/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ 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
# TODO bump on release to {:phoenix_live_view, ">= 0.0.0"},
{:phoenix_live_view,
github: "phoenixframework/phoenix_live_view", ref: "jv-interpol", override: true}
{:phoenix_live_view, ">= 0.0.0"}
]<% else %>
[]<% end %>
end
Expand Down

0 comments on commit 17c51f3

Please sign in to comment.