From 873d7fdb074e13c3287d055994085a8dd584bb57 Mon Sep 17 00:00:00 2001 From: Michael Ries Date: Wed, 16 Oct 2024 13:28:15 +0900 Subject: [PATCH] require elixir 1.14 and erlang 25+ --- .github/workflows/CI.yml | 8 ++++---- mix.exs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ab3aeae..534cf71 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -16,15 +16,15 @@ jobs: strategy: matrix: pair: - - otp: "24.3.4" - elixir: "1.12" + - otp: "25.3.2" + elixir: "1.14" nats: "2.10.0" - - otp: "26.2.4" + - otp: "27.1" elixir: "1.16.2" nats: "2.10.14" - - otp: "24.3.4" + - otp: "27.1" elixir: "main" nats: "latest" diff --git a/mix.exs b/mix.exs index b5a1d97..b647380 100644 --- a/mix.exs +++ b/mix.exs @@ -8,7 +8,7 @@ defmodule Gnat.Mixfile do [ app: :gnat, version: @version, - elixir: "~> 1.12", + elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env()), build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod,