Skip to content

Commit

Permalink
Require minimum Elixir v1.14 (#593)
Browse files Browse the repository at this point in the history
* Require minimum Elixir v1.14

The main reason is to support https://hex.pm/packages/image
  • Loading branch information
leandrocp authored Sep 26, 2024
1 parent baa624d commit 10541e2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ jobs:
name: "test: OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}} | Phoenix ${{matrix.phoenix-version}} | LiveView ${{matrix.phoenix-live-view-version}}"

strategy:
fail-fast: false
matrix:
include:
# minimum required versions
- otp: "23"
elixir: "1.13.0"
elixir: "1.14.0"
phoenix-version: "1.7.0"
phoenix-live-view-version: "0.20.2"

Expand Down Expand Up @@ -84,6 +85,7 @@ jobs:
name: "quality: OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}} | Phoenix ${{matrix.phoenix-version}} | LiveView ${{matrix.phoenix-live-view-version}}"

strategy:
fail-fast: false
matrix:
include:
# latest
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## 0.1.0-dev

### Breaking Changes
* Require minimum Elixir v1.14

### Enhancements
* Added Shared Info Handlers (`info_handle` callbacks) - [#578](https://github.com/BeaconCMS/beacon/pull/578) by [@ddink](https://github.com/ddink)

Expand Down
2 changes: 1 addition & 1 deletion guides/introduction/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Install Beacon and Beacon LiveAdmin in a new Phoenix LiveView application to ena

## Steps

1. Install Elixir v1.13 or later
1. Install Elixir v1.14 or later

Check out the official [Elixir install guide](https://elixir-lang.org/install.html) for more info.

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule Beacon.MixProject do
[
app: :beacon,
version: @version,
elixir: "~> 1.13",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
name: "Beacon",
Expand Down

0 comments on commit 10541e2

Please sign in to comment.