Skip to content

Commit

Permalink
Bump minimum Elixir version to 1.12 in mix.exs files
Browse files Browse the repository at this point in the history
Since this is the minimum supported version of the language itself.
  • Loading branch information
ajvondrak committed Jun 9, 2024
1 parent 27564e5 commit 62af520
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bench/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Bench.MixProject do
[
app: :bench,
version: "0.0.0",
elixir: "~> 1.11",
elixir: "~> 1.12",
deps: deps()
]
end
Expand Down
2 changes: 1 addition & 1 deletion integration/tests/basic/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion integration/tests/custom/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion integration/tests/debug/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion integration/tests/parsers/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion integration/tests/purge/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 62af520

Please sign in to comment.