From a6ff02282aebbacdfddcab5c98495cf30a7b7fbb Mon Sep 17 00:00:00 2001
From: Todd Resudek
Date: Mon, 29 Dec 2025 12:10:16 -0700
Subject: [PATCH 1/3] LOTC-4286 supports elixir 1.14
---
mix.exs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mix.exs b/mix.exs
index 50657de..82f51e9 100644
--- a/mix.exs
+++ b/mix.exs
@@ -1,14 +1,14 @@
defmodule Kennel.MixProject do
use Mix.Project
- @version "0.1.2"
+ @version "0.1.3"
@source_url "https://github.com/jackpocket/kennel"
def project do
[
app: :kennel,
version: @version,
- elixir: "~> 1.15",
+ elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
From 1babe3396f91080f66ee341fa669c48c8d9964f9 Mon Sep 17 00:00:00 2001
From: Todd Resudek
Date: Mon, 29 Dec 2025 12:17:23 -0700
Subject: [PATCH 2/3] LOTC-4286 adds 1.14 to the test matrix
---
.github/workflows/ci.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a880f16..f14d44f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,6 +20,8 @@ jobs:
erlang: '25.3.2.21'
- elixir: '1.15'
erlang: '25.3.2.21'
+ - elixir: '1.14'
+ erlang: '24.3.4.2'
steps:
- uses: actions/checkout@v6
- uses: actions/cache@v4
From 22f69d953443cb8b011dd25bce571c380be30553 Mon Sep 17 00:00:00 2001
From: Todd Resudek
Date: Mon, 29 Dec 2025 12:39:19 -0700
Subject: [PATCH 3/3] LOTC-4286 reverts back to 1.15 requirement
---
.github/workflows/ci.yml | 2 --
mix.exs | 4 ++--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f14d44f..a880f16 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,8 +20,6 @@ jobs:
erlang: '25.3.2.21'
- elixir: '1.15'
erlang: '25.3.2.21'
- - elixir: '1.14'
- erlang: '24.3.4.2'
steps:
- uses: actions/checkout@v6
- uses: actions/cache@v4
diff --git a/mix.exs b/mix.exs
index 82f51e9..4f10456 100644
--- a/mix.exs
+++ b/mix.exs
@@ -1,14 +1,14 @@
defmodule Kennel.MixProject do
use Mix.Project
- @version "0.1.3"
+ @version "0.1.4"
@source_url "https://github.com/jackpocket/kennel"
def project do
[
app: :kennel,
version: @version,
- elixir: "~> 1.14",
+ elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),