Skip to content

Commit

Permalink
Bump patch version & Add Elixir 1.14 to test matrix (#296)
Browse files Browse the repository at this point in the history
* Bump patch version

* Add Elixir 1.14

Test against Elixir 1.14

* Omit unsupported OTP version for Elixir 1.14
  • Loading branch information
mattpolzin authored Jun 26, 2023
1 parent a2728f5 commit bda587a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ jobs:
name: Test (OTP ${{ matrix.otp }} / Elixir ${{ matrix.elixir }})
strategy:
matrix:
elixir: ["1.13", "1.12", "1.11", "1.10"]
elixir: ["1.14", "1.13", "1.12", "1.11", "1.10"]
# All of the above can use this version. For details see: https://hexdocs.pm/elixir/compatibility-and-deprecations.html#compatibility-between-elixir-and-erlang-otp
otp: [25, 24, 23, 22]
exclude:
- { otp: "24", elixir: "1.10" }
- { otp: "25", elixir: "1.10" }
- { otp: "25", elixir: "1.11" }
- { otp: "25", elixir: "1.12" }
- { otp: "22", elixir: "1.14" }
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule JSONAPI.Mixfile do
def project do
[
app: :jsonapi,
version: "1.6.0",
version: "1.6.1",
package: package(),
compilers: compilers(Mix.env()),
description: description(),
Expand Down

0 comments on commit bda587a

Please sign in to comment.