Skip to content

Commit e9f6826

Browse files
committed
Support only Elixir 1.16 or later
1 parent 36acab4 commit e9f6826

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
matrix:
3535
include:
3636
# minimum required versions
37-
- otp: "26.2.5.6"
38-
elixir: "1.15.4-otp-26"
3937
- otp: "26.2.5.6"
4038
elixir: "1.16.2-otp-26"
4139
- otp: "26.2.5.6"

CHANGELOG.md

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

3+
## Image 0.63.0
4+
5+
This is the changelog for Image version 0.63.0 released on January 19th, 2026. For older changelogs please consult the release tag on [GitHub](https://github.com/elixir-image/image/tags)
6+
7+
### Breaking Changes
8+
9+
* Image is supported on Elixir 1.16 and greater only. Previously support was claimed for Elixir 1.12 and later.
10+
11+
### Bug Fixes
12+
13+
* Fix compiler warnings on Elixir 1.20.
14+
315
## Image 0.62.1
416

517
This is the changelog for Image version 0.62.1 released on October 23rd, 2025. For older changelogs please consult the release tag on [GitHub](https://github.com/elixir-image/image/tags)

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
defmodule Image.MixProject do
22
use Mix.Project
33

4-
@version "0.62.1"
4+
@version "0.63.0"
55

66
@app_name "image"
77

88
def project do
99
[
1010
app: String.to_atom(@app_name),
1111
version: @version,
12-
elixir: "~> 1.14",
12+
elixir: "~> 1.16",
1313
deps: deps(),
1414
elixirc_paths: elixirc_paths(Mix.env()),
1515
source_url: "https://github.com/elixir-image/image",

0 commit comments

Comments
 (0)