Skip to content

Commit 66e657c

Browse files
committed
Drop support for elixir 1.13 and add 1.16 to CI
1 parent fe8519e commit 66e657c

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

Diff for: .github/workflows/ci.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: ["ubuntu-20.04"]
18-
elixir: ["1.15"]
18+
elixir: ["1.16"]
1919
otp: ["26"]
2020
steps:
2121
- uses: actions/checkout@v3
@@ -41,11 +41,8 @@ jobs:
4141
fail-fast: false
4242
matrix:
4343
os: ["ubuntu-20.04"]
44-
elixir: ["1.15", "1.14", "1.13"]
44+
elixir: ["1.16", "1.15", "1.14"]
4545
otp: ["26", "25", "24"]
46-
exclude:
47-
- elixir: "1.13"
48-
otp: "26"
4946
steps:
5047
- uses: actions/checkout@v3
5148
- uses: erlef/setup-beam@v1

Diff for: mix.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
defmodule EctoSQLite3.MixProject do
22
use Mix.Project
33

4-
@version "0.14.0"
4+
@version "0.15.0"
55

66
def project do
77
[
88
app: :ecto_sqlite3,
99
version: @version,
10-
elixir: "~> 1.13",
10+
elixir: "~> 1.14",
1111
start_permanent: Mix.env() == :prod,
1212
source_url: "https://github.com/elixir-sqlite/ecto_sqlite3",
1313
homepage_url: "https://github.com/elixir-sqlite/ecto_sqlite3",

0 commit comments

Comments
 (0)