From 17c51f38fddd2c6e97e417132fab6aab2e2679c7 Mon Sep 17 00:00:00 2001 From: Steffen Deusch Date: Mon, 9 Dec 2024 16:13:24 +0100 Subject: [PATCH] bump LV to 1.0 --- .gitignore | 1 + installer/templates/phx_single/mix.exs | 4 +--- installer/templates/phx_umbrella/apps/app_name_web/mix.exs | 4 +--- installer/templates/phx_umbrella/mix.exs | 4 +--- 4 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 44fba26034..e46730c560 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ /installer/deps/ /installer/doc/ /installer/phx_new-*.ez +/installer/tmp/ /integration_test/_build/ /integration_test/deps/ diff --git a/installer/templates/phx_single/mix.exs b/installer/templates/phx_single/mix.exs index 97cd179221..0e990e8d0c 100644 --- a/installer/templates/phx_single/mix.exs +++ b/installer/templates/phx_single/mix.exs @@ -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 %> diff --git a/installer/templates/phx_umbrella/apps/app_name_web/mix.exs b/installer/templates/phx_umbrella/apps/app_name_web/mix.exs index 7ae2fd9dd1..d2ce376fcd 100644 --- a/installer/templates/phx_umbrella/apps/app_name_web/mix.exs +++ b/installer/templates/phx_umbrella/apps/app_name_web/mix.exs @@ -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 %> diff --git a/installer/templates/phx_umbrella/mix.exs b/installer/templates/phx_umbrella/mix.exs index e378648ea4..e02ac62624 100644 --- a/installer/templates/phx_umbrella/mix.exs +++ b/installer/templates/phx_umbrella/mix.exs @@ -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