From 439b440de5eae85df06946b88d1453a17316e8db Mon Sep 17 00:00:00 2001 From: tom Date: Fri, 27 Dec 2024 12:19:09 +0100 Subject: [PATCH] update officially supported versions in changelog --- CHANGELOG.md | 5 +++++ mix.exs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c0c1f8..abb3267 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.13.0 + +* Add support for Elixir 1.18. Drop support for Elixir 1.15. Elixir >= 1.16 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. +* Drop support for Erlang/OTP 24, and Erlang/OTP >= 25 is now required. Dropping support for older versions of Erlang/OTP simply means that this package is not tested with them in CI, and that no compatibility issues are considered bugs. + ## v1.12.0 * Add support for Elixir 1.17 and 1.16. Drop support for Elixir 1.13 and 1.14. Elixir >= 1.15 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 7c3b93d..bc8c35c 100644 --- a/mix.exs +++ b/mix.exs @@ -8,7 +8,7 @@ defmodule FunWithFlags.Mixfile do [ app: :fun_with_flags, version: @version, - elixir: "~> 1.15", + elixir: "~> 1.16", elixirc_paths: elixirc_paths(Mix.env), build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod,