Skip to content

Commit f1ee06c

Browse files
committed
Raise min supp OTP & Elixir versions after CI move from Ubuntu 20 to 22
1 parent 6f39314 commit f1ee06c

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ jobs:
3737
strategy:
3838
matrix:
3939
elixir_vsn: [
40-
'1.7',
41-
'1.8',
42-
'1.9',
43-
'1.10',
4440
'1.11',
4541
'1.12',
4642
'1.13',

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
1111

1212
- CI from Ubuntu 20.04 to 22.04
13+
- oldest supported Elixir version from 1.7 to 1.11
14+
- oldest supported OTP version from 21 to 24
1315

1416
## [0.2.1] - 2025-02-06
1517

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![Hex downloads](https://img.shields.io/hexpm/dt/sqids.svg)](https://hex.pm/packages/sqids)
44
[![License](https://img.shields.io/hexpm/l/sqids.svg)](https://github.com/sqids/sqids-elixir/blob/main/LICENSE)
5-
[![Elixir Versions](https://img.shields.io/badge/Elixir-1.7%20to%201.18-blue)](https://elixir-lang.org/)
6-
[![Erlang Versions](https://img.shields.io/badge/Erlang%2FOTP-21.3%20to%2027-blue)](https://www.erlang.org)
5+
[![Elixir Versions](https://img.shields.io/badge/Elixir-1.11%20to%201.18-blue)](https://elixir-lang.org/)
6+
[![Erlang Versions](https://img.shields.io/badge/Erlang%2FOTP-24.3%20to%2027-blue)](https://www.erlang.org)
77
[![CI status](https://github.com/sqids/sqids-elixir/actions/workflows/ci.yml/badge.svg)](https://github.com/sqids/sqids-elixir/actions/workflows/ci.yml)
88

99
[Sqids](https://sqids.org/elixir) (*pronounced "squids"*) for Elixir is a

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defmodule Sqids.MixProject do
1111
app: :sqids,
1212
version: @version,
1313
description: description(),
14-
elixir: "~> 1.7",
14+
elixir: "~> 1.7", # but only 1.11+ is supported
1515
start_permanent: mix_env === :prod,
1616
deps: deps(),
1717
elixirc_paths: elixirc_paths(mix_env),

0 commit comments

Comments
 (0)