From fb65fa07cc7ea9590b270b140da8274f95685fd1 Mon Sep 17 00:00:00 2001 From: tom Date: Sat, 3 Feb 2024 00:39:16 +0100 Subject: [PATCH] Update supported version of Elixir --- CHANGELOG.md | 4 ++++ mix.exs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd2b62f0..9f3707a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.12.0 (Unreleased) + +* Add support for Elixir 1.16. Drop support for Elixir 1.13. Elixir >= 1.14 is now required. Dropping support for older versions of Elixir simply means that this package is no longer tested with them in CI, and that compatibility issues are not considered bugs. + ## v1.11.0 * Add support for Elixir 1.15. Drop support for Elixir 1.12. Elixir >= 1.13 is now required. Dropping support for older versions of Elixir simply means that this package is no longer tested with them in CI, and that compatibility issues are not considered bugs. diff --git a/mix.exs b/mix.exs index 3e2914b0..b089b208 100644 --- a/mix.exs +++ b/mix.exs @@ -8,7 +8,7 @@ defmodule FunWithFlags.Mixfile do [ app: :fun_with_flags, version: @version, - elixir: "~> 1.13", + elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env), build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod,