Skip to content

Commit 17c51f3

Browse files
committed
bump LV to 1.0
1 parent b120b0f commit 17c51f3

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
/installer/deps/
1313
/installer/doc/
1414
/installer/phx_new-*.ez
15+
/installer/tmp/
1516

1617
/integration_test/_build/
1718
/integration_test/deps/

installer/templates/phx_single/mix.exs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ defmodule <%= @app_module %>.MixProject do
4343
{<%= inspect @adapter_app %>, ">= 0.0.0"},<% end %><%= if @html do %>
4444
{:phoenix_html, "~> 4.1"},
4545
{:phoenix_live_reload, "~> 1.2", only: :dev},
46-
# TODO bump on release to {:phoenix_live_view, "~> 1.0.0"},
47-
{:phoenix_live_view,
48-
github: "phoenixframework/phoenix_live_view", ref: "jv-interpol", override: true},
46+
{:phoenix_live_view, "~> 1.0.0"},
4947
{:floki, ">= 0.30.0", only: :test},<% end %><%= if @dashboard do %>
5048
{:phoenix_live_dashboard, "~> 0.8.3"},<% end %><%= if @javascript do %>
5149
{:esbuild, "~> 0.8", runtime: Mix.env() == :dev},<% end %><%= if @css do %>

installer/templates/phx_umbrella/apps/app_name_web/mix.exs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,7 @@ defmodule <%= @web_namespace %>.MixProject do
4141
{:phoenix_ecto, "~> 4.5"},<% end %><%= if @html do %>
4242
{:phoenix_html, "~> 4.1"},
4343
{:phoenix_live_reload, "~> 1.2", only: :dev},
44-
# TODO bump on release to {:phoenix_live_view, "~> 1.0.0"},
45-
{:phoenix_live_view,
46-
github: "phoenixframework/phoenix_live_view", ref: "jv-interpol", override: true},
44+
{:phoenix_live_view, "~> 1.0.0"},
4745
{:floki, ">= 0.30.0", only: :test},<% end %><%= if @dashboard do %>
4846
{:phoenix_live_dashboard, "~> 0.8.3"},<% end %><%= if @javascript do %>
4947
{:esbuild, "~> 0.8", runtime: Mix.env() == :dev},<% end %><%= if @css do %>

installer/templates/phx_umbrella/mix.exs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ defmodule <%= @root_app_module %>.MixProject do
2727
[
2828
<%= if @dev or @phoenix_version.pre != [] do %><%= @phoenix_dep_umbrella_root %>,
2929
<% end %># Required to run "mix format" on ~H/.heex files from the umbrella root
30-
# TODO bump on release to {:phoenix_live_view, ">= 0.0.0"},
31-
{:phoenix_live_view,
32-
github: "phoenixframework/phoenix_live_view", ref: "jv-interpol", override: true}
30+
{:phoenix_live_view, ">= 0.0.0"}
3331
]<% else %>
3432
[]<% end %>
3533
end

0 commit comments

Comments
 (0)