Skip to content

Commit d60761c

Browse files
committed
Drop support for Elixir v1.13
1 parent 3645bb8 commit d60761c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: ["ubuntu-20.04"]
20-
elixir: ["1.15"]
20+
elixir: ["1.16"]
2121
otp: ["26"]
2222
steps:
2323
- uses: actions/checkout@v3
@@ -49,7 +49,7 @@ jobs:
4949
fail-fast: false
5050
matrix:
5151
os: ["ubuntu-20.04", "windows-2019"]
52-
elixir: ["1.15", "1.14", "1.13"]
52+
elixir: ["1.16", 1.15", "1.14"]
5353
otp: ["26", "25", "24"]
5454
exclude:
5555
- elixir: "1.13"

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unlreleased
44

5+
- changed: Dropped support for Elixir v1.13.
6+
57
## v0.18.0
68

79
- added: Ability to specify build parameters programatically.

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ defmodule Exqlite.MixProject do
88
[
99
app: :exqlite,
1010
version: @version,
11-
elixir: "~> 1.13",
11+
elixir: "~> 1.14",
1212
compilers: [:elixir_make] ++ Mix.compilers(),
1313
make_targets: ["all"],
1414
make_clean: ["clean"],

0 commit comments

Comments
 (0)