From 081269870e1df2c6407363da07f8aca96307243b Mon Sep 17 00:00:00 2001 From: Vittoria Bitton Date: Sun, 18 Feb 2024 18:40:33 -0300 Subject: [PATCH 1/2] Update elixir version to 1.13 --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index dc582baa..6398fea3 100644 --- a/mix.exs +++ b/mix.exs @@ -11,7 +11,7 @@ defmodule Floki.Mixfile do name: "Floki", version: @version, description: @description, - elixir: "~> 1.12", + elixir: "~> 1.13", package: package(), erlc_paths: ["src", "gen"], compilers: [:leex] ++ Mix.compilers(), From f984e1d15e8a4e27ebec75b2378e58b00ff5c56f Mon Sep 17 00:00:00 2001 From: Vittoria Bitton Date: Sun, 18 Feb 2024 21:55:32 -0300 Subject: [PATCH 2/2] Update elixir version in CI --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ce52e14..31029f03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,17 +14,17 @@ jobs: strategy: fail-fast: false matrix: - elixir: ["1.16", "1.12"] + elixir: ["1.16", "1.13"] otp: ["26.2", "25.3", "22.3"] parser: [fast_html, html5ever, mochiweb] exclude: - elixir: "1.16" otp: "22.3" - - elixir: "1.12" + - elixir: "1.13" otp: "25.3" - - elixir: "1.12" + - elixir: "1.13" otp: "26.2" steps: