From 717c75a3cedcb92adc9cbaf9e2233dcb3556a0c3 Mon Sep 17 00:00:00 2001 From: crertel Date: Tue, 25 Jun 2024 01:38:48 -0500 Subject: [PATCH] Require Elixir 1.16 --- .github/workflows/ci.yml | 4 +--- CHANGELOG.md | 3 +++ mix.exs | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c82d97f..043333d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,9 +17,7 @@ jobs: strategy: fail-fast: false matrix: - include: - - elixir: '1.12.3' - otp: '24.2' + include: - elixir: '1.16.0' otp: '26.2' diff --git a/CHANGELOG.md b/CHANGELOG.md index 999c0e3..6afe5b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ ## 0.12.0-rc.0 + +**Note: as of v0.12.0 we'll be requiring at least Elixir 1.16** + This is a major update that adds support for Cairo and makes Cairo the default renderer: * Add Cairo support - @ringlej diff --git a/mix.exs b/mix.exs index 16484e0..6e52c5e 100644 --- a/mix.exs +++ b/mix.exs @@ -9,7 +9,7 @@ defmodule Scenic.Driver.Local.MixProject do [ app: @app_name, version: @version, - elixir: "~> 1.12", + elixir: "~> 1.16", start_permanent: Mix.env() == :prod, description: description(), build_embedded: true,