Skip to content

Commit

Permalink
Drop support for elixir 1.13 and add 1.16 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
warmwaffles committed Jan 18, 2024
1 parent fe8519e commit 66e657c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-20.04"]
elixir: ["1.15"]
elixir: ["1.16"]
otp: ["26"]
steps:
- uses: actions/checkout@v3
Expand All @@ -41,11 +41,8 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
elixir: ["1.15", "1.14", "1.13"]
elixir: ["1.16", "1.15", "1.14"]
otp: ["26", "25", "24"]
exclude:
- elixir: "1.13"
otp: "26"
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
defmodule EctoSQLite3.MixProject do
use Mix.Project

@version "0.14.0"
@version "0.15.0"

def project do
[
app: :ecto_sqlite3,
version: @version,
elixir: "~> 1.13",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
source_url: "https://github.com/elixir-sqlite/ecto_sqlite3",
homepage_url: "https://github.com/elixir-sqlite/ecto_sqlite3",
Expand Down

0 comments on commit 66e657c

Please sign in to comment.