Skip to content

Commit 01357f2

Browse files
committed
Remove support for Elixir 1.11
1 parent c2e6023 commit 01357f2

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,11 @@ jobs:
4848
fail-fast: false
4949
matrix:
5050
os: ["ubuntu-20.04", "windows-2019"]
51-
elixir: ["1.14", "1.13", "1.12", "1.11"]
51+
elixir: ["1.14", "1.13", "1.12"]
5252
otp: ["25", "24", "23"]
5353
exclude:
5454
- elixir: "1.12"
5555
otp: "25"
56-
- elixir: "1.11"
57-
otp: "25"
5856
steps:
5957
- uses: actions/checkout@v3
6058
- uses: erlef/setup-beam@v1

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## Unlreleased
4+
- removed: Remove support for Elixir 1.11
5+
36
## v0.12.0 - 2022-12-07
47
- changed: Use `multi_step` for `Repo.stream` calls. [#223](https://github.com/elixir-sqlite/exqlite/pull/223)
58
- added: Ability to use URI for a database path. See [sqlite docs](https://sqlite.org/uri.html). Example: `file:/tmp/database.db?mode=ro`. [#225](https://github.com/elixir-sqlite/exqlite/pull/225)

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.10",
11+
elixir: "~> 1.12",
1212
compilers: [:elixir_make] ++ Mix.compilers(),
1313
make_targets: ["all"],
1414
make_clean: ["clean"],

0 commit comments

Comments
 (0)