Skip to content

Commit 4f49a6a

Browse files
committed
Fix required elixir version.
phx.new requires elixir >= 1.14, but phoenix itself can remain ~> 1.11
1 parent 5d23c16 commit 4f49a6a

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ styled with Tailwind CSS by default. You can opt-out of Tailwind CSS with the `-
4646
flag (the Tailwind CSS classes are kept in the generated components as reference for
4747
future styling).
4848

49+
## 1.7.16 (2024-12-03)
50+
51+
### Bug fixes
52+
* Fix required Elixir version in mix.exs
53+
4954
## 1.7.15 (2024-12-02)
5055

5156
### Enhancements

assets/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phoenix",
3-
"version": "1.7.15",
3+
"version": "1.7.16",
44
"description": "The official JavaScript client for the Phoenix web framework.",
55
"license": "MIT",
66
"main": "./assets/js/phoenix/index.js",

installer/mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ end
66
defmodule Phx.New.MixProject do
77
use Mix.Project
88

9-
@version "1.7.15"
9+
@version "1.7.16"
1010
@scm_url "https://github.com/phoenixframework/phoenix"
1111

1212
# If the elixir requirement is updated, we need to update:

mix.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ defmodule Phoenix.MixProject do
88
end
99
end
1010

11-
@version "1.7.15"
11+
@version "1.7.16"
1212
@scm_url "https://github.com/phoenixframework/phoenix"
1313

1414
# If the elixir requirement is updated, we need to make the installer
1515
# use at least the minimum requirement used here. Although often the
1616
# installer is ahead of Phoenix itself.
17-
@elixir_requirement "~> 1.14"
17+
@elixir_requirement "~> 1.11"
1818

1919
def project do
2020
[

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phoenix",
3-
"version": "1.7.15",
3+
"version": "1.7.16",
44
"description": "The official JavaScript client for the Phoenix web framework.",
55
"license": "MIT",
66
"module": "./priv/static/phoenix.mjs",

0 commit comments

Comments
 (0)