From 62af5204813da30510b52a0325761a1d20b429b0 Mon Sep 17 00:00:00 2001 From: Alex Vondrak Date: Sun, 9 Jun 2024 16:00:07 -0700 Subject: [PATCH] Bump minimum Elixir version to 1.12 in mix.exs files Since this is the minimum supported version of the language itself. --- bench/mix.exs | 2 +- integration/tests/basic/mix.exs | 2 +- integration/tests/custom/mix.exs | 2 +- integration/tests/debug/mix.exs | 2 +- integration/tests/parsers/mix.exs | 2 +- integration/tests/purge/mix.exs | 2 +- mix.exs | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bench/mix.exs b/bench/mix.exs index 278297e..9c9373a 100644 --- a/bench/mix.exs +++ b/bench/mix.exs @@ -5,7 +5,7 @@ defmodule Bench.MixProject do [ app: :bench, version: "0.0.0", - elixir: "~> 1.11", + elixir: "~> 1.12", deps: deps() ] end diff --git a/integration/tests/basic/mix.exs b/integration/tests/basic/mix.exs index c8064f7..73fc7c9 100644 --- a/integration/tests/basic/mix.exs +++ b/integration/tests/basic/mix.exs @@ -5,7 +5,7 @@ defmodule Basic.MixProject do [ app: :basic, version: "0.0.0", - elixir: "~> 1.10", + elixir: "~> 1.12", deps: [remote_ip: [path: "../../.."]] ] end diff --git a/integration/tests/custom/mix.exs b/integration/tests/custom/mix.exs index 3af41e9..525aee7 100644 --- a/integration/tests/custom/mix.exs +++ b/integration/tests/custom/mix.exs @@ -5,7 +5,7 @@ defmodule Custom.MixProject do [ app: :custom, version: "0.0.0", - elixir: "~> 1.10", + elixir: "~> 1.12", deps: [remote_ip: [path: "../../.."]] ] end diff --git a/integration/tests/debug/mix.exs b/integration/tests/debug/mix.exs index e76ad33..a93e333 100644 --- a/integration/tests/debug/mix.exs +++ b/integration/tests/debug/mix.exs @@ -5,7 +5,7 @@ defmodule Debug.MixProject do [ app: :debug, version: "0.0.0", - elixir: "~> 1.10", + elixir: "~> 1.12", deps: [remote_ip: [path: "../../.."]] ] end diff --git a/integration/tests/parsers/mix.exs b/integration/tests/parsers/mix.exs index decd8b6..4747359 100644 --- a/integration/tests/parsers/mix.exs +++ b/integration/tests/parsers/mix.exs @@ -5,7 +5,7 @@ defmodule Parsers.MixProject do [ app: :parsers, version: "0.0.0", - elixir: "~> 1.10", + elixir: "~> 1.12", deps: [remote_ip: [path: "../../.."]] ] end diff --git a/integration/tests/purge/mix.exs b/integration/tests/purge/mix.exs index 5713e92..55057db 100644 --- a/integration/tests/purge/mix.exs +++ b/integration/tests/purge/mix.exs @@ -5,7 +5,7 @@ defmodule Purge.MixProject do [ app: :purge, version: "0.0.0", - elixir: "~> 1.10", + elixir: "~> 1.12", deps: [remote_ip: [path: "../../.."]] ] end diff --git a/mix.exs b/mix.exs index 420f2d9..5836a38 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule RemoteIp.Mixfile do [ app: :remote_ip, version: "1.1.0", - elixir: "~> 1.10", + elixir: "~> 1.12", description: description(), package: package(), deps: deps(),