Skip to content

Commit

Permalink
Bump Elixir version
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Nov 28, 2024
1 parent 1828828 commit 2f33b97
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: CI
on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

permissions:
contents: read
Expand All @@ -19,13 +19,13 @@ jobs:
fail-fast: false
matrix:
include:
- elixir: '1.17.3'
otp: '27.1'
- elixir: "1.17.3"
otp: "27.1"
lint: lint
- elixir: '1.17.3'
otp: '25.0.4'
- elixir: '1.11.4'
otp: '21.3.8.24'
- elixir: "1.17.3"
otp: "25.0.4"
- elixir: "1.14.5"
otp: "23.3.4.20"

steps:
- name: Checkout
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
elixirbase:
- "1.17.3-erlang-27.1-alpine-3.17.9"
- "1.17.3-erlang-25.0.4-alpine-3.17.9"
- "1.11.4-erlang-21.3.8.24-alpine-3.13.3"
- "1.14.5-erlang-23.3.4.20-alpine-3.16.9"
steps:
- uses: earthly/actions-setup@v1
- uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for v3.x

## v3.13.0-dev

Requires Elixir v1.14+.

## v3.12.5 (2024-11-28)

### Enhancements
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ defmodule Ecto.MixProject do
use Mix.Project

@source_url "https://github.com/elixir-ecto/ecto"
@version "3.12.5"
@version "3.13.0-dev"

def project do
[
app: :ecto,
version: @version,
elixir: "~> 1.11",
elixir: "~> 1.14",
deps: deps(),
consolidate_protocols: Mix.env() != :test,
elixirc_paths: elixirc_paths(Mix.env()),
Expand Down

0 comments on commit 2f33b97

Please sign in to comment.