Skip to content

Commit

Permalink
feat: support Elixir 1.14.4+ (#294)
Browse files Browse the repository at this point in the history
1.14.4 was the first Elixir release to support OTP 26:
https://github.com/elixir-lang/elixir/releases/tag/v1.14.4

There doesn't appear to be anything about Oidcc which requires features
in 1.15, so Oidcc can express support for slightly earlier versions.
  • Loading branch information
paulswartz authored Nov 24, 2023
1 parent 9a332f8 commit 3aceec2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/part_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ jobs:
fail-fast: false
matrix:
include:
- elixir: "1.14.5"
unstable: false
- elixir: "1.15.0"
unstable: false
- elixir: "1.15.7"
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule Oidcc.Mixfile do
[
app: :oidcc,
version: to_string(@props[:vsn]),
elixir: "~> 1.15",
elixir: ">= 1.14.4 and < 2.0.0",
erlc_options: erlc_options(Mix.env()),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit 3aceec2

Please sign in to comment.