From bda587a3d392032c94d3682fbfc7a5aef7b978ea Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Mon, 26 Jun 2023 08:46:36 -0500 Subject: [PATCH] Bump patch version & Add Elixir 1.14 to test matrix (#296) * Bump patch version * Add Elixir 1.14 Test against Elixir 1.14 * Omit unsupported OTP version for Elixir 1.14 --- .github/workflows/ci.yml | 3 ++- mix.exs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22a7c88f..73912c93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ 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: @@ -23,6 +23,7 @@ jobs: - { 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 diff --git a/mix.exs b/mix.exs index c3edec30..d4288564 100644 --- a/mix.exs +++ b/mix.exs @@ -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(),