From 41fd966967c0ad33fa6786dbc5f43a0485bad6d0 Mon Sep 17 00:00:00 2001
From: Piotr Szmielew
Date: Tue, 8 Oct 2024 11:48:09 +0200
Subject: [PATCH] chore: update minimum elixir version
---
.github/workflows/elixir.yml | 2 +-
mix.exs | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml
index bf0bdf7..36108db 100644
--- a/.github/workflows/elixir.yml
+++ b/.github/workflows/elixir.yml
@@ -17,7 +17,7 @@ jobs:
- name: Set up Elixir
uses: erlef/setup-beam@v1.17.5
with:
- elixir-version: '1.10.3' # Define the elixir version [required]
+ elixir-version: '1.12.3' # Define the elixir version [required]
otp-version: '22.3' # Define the OTP version [required]
- name: Restore dependencies cache
uses: actions/cache@v2
diff --git a/mix.exs b/mix.exs
index fbf697e..4f595d3 100644
--- a/mix.exs
+++ b/mix.exs
@@ -4,8 +4,8 @@ defmodule Erebus.MixProject do
def project do
[
app: :erebus,
- version: "0.2.2",
- elixir: "~> 1.10",
+ version: "0.2.3",
+ elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
consolidate_protocols: Mix.env() != :test,