diff --git a/CHANGELOG.md b/CHANGELOG.md index d3849ce1c1..94efb5c6c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,6 +46,11 @@ styled with Tailwind CSS by default. You can opt-out of Tailwind CSS with the `- flag (the Tailwind CSS classes are kept in the generated components as reference for future styling). +## 1.7.15 (2024-12-02) + +### Enhancements + * Support phoenixframework.org installer + ## 1.7.14 (2024-06-18) ### Bug fixes diff --git a/assets/package-lock.json b/assets/package-lock.json index 9c34545834..fa83809b50 100644 --- a/assets/package-lock.json +++ b/assets/package-lock.json @@ -1,12 +1,12 @@ { "name": "phoenix", - "version": "1.7.14", + "version": "1.7.15", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "phoenix", - "version": "1.7.14", + "version": "1.7.15", "license": "MIT", "devDependencies": { "@babel/cli": "7.24.5", diff --git a/assets/package.json b/assets/package.json index e665959f3e..05ec1ec91e 100644 --- a/assets/package.json +++ b/assets/package.json @@ -1,6 +1,6 @@ { "name": "phoenix", - "version": "1.7.14", + "version": "1.7.15", "description": "The official JavaScript client for the Phoenix web framework.", "license": "MIT", "main": "./assets/js/phoenix/index.js", diff --git a/installer/mix.exs b/installer/mix.exs index 98ca0634c6..4cafbedbd1 100644 --- a/installer/mix.exs +++ b/installer/mix.exs @@ -6,7 +6,7 @@ end defmodule Phx.New.MixProject do use Mix.Project - @version "1.7.14" + @version "1.7.15" @scm_url "https://github.com/phoenixframework/phoenix" # If the elixir requirement is updated, we need to update: diff --git a/mix.exs b/mix.exs index 9dfcc2f9b6..1085910f8b 100644 --- a/mix.exs +++ b/mix.exs @@ -8,13 +8,13 @@ defmodule Phoenix.MixProject do end end - @version "1.7.14" + @version "1.7.15" @scm_url "https://github.com/phoenixframework/phoenix" # If the elixir requirement is updated, we need to make the installer # use at least the minimum requirement used here. Although often the # installer is ahead of Phoenix itself. - @elixir_requirement "~> 1.11" + @elixir_requirement "~> 1.14" def project do [ diff --git a/package.json b/package.json index 2e1bdbc13c..5a3e8186bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phoenix", - "version": "1.7.14", + "version": "1.7.15", "description": "The official JavaScript client for the Phoenix web framework.", "license": "MIT", "module": "./priv/static/phoenix.mjs",