Skip to content

Commit df59760

Browse files
authored
Start requiring Elixir 1.11+ (#307)
1 parent f2ce356 commit df59760

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
otp: "22.3"
3131

3232
# Oldest supported versions.
33-
- os: ubuntu-18.04
34-
elixir: "1.7.4"
35-
otp: "19.3.6.13"
33+
- os: ubuntu-20.04
34+
elixir: "1.11"
35+
otp: "21.3.8.24"
3636

3737
steps:
3838
- name: Check out this repository

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ defmodule GenStage.Mixfile do
77
[
88
app: :gen_stage,
99
version: @version,
10-
elixir: "~> 1.7",
10+
elixir: "~> 1.11",
1111
package: package(),
1212
description: "Producer and consumer actors with back-pressure for Elixir",
1313
start_permanent: Mix.env() == :prod,

0 commit comments

Comments
 (0)