Skip to content

Commit 5765fda

Browse files
committed
Raise min supported OTP version following CI move from Ubuntu 20 to 22
1 parent ed239a0 commit 5765fda

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ${{matrix.os}}
1818
strategy:
1919
matrix:
20-
otp_vsn: ['22.3', '23.3', '24.3', '25.3', '26.2', '27.2']
20+
otp_vsn: ['24.3', '25.3', '26.2', '27.2']
2121
os: ['ubuntu-22.04', 'windows-2019']
2222
exclude:
2323
# Results in "make: *** [Makefile:38: ct] Error 2816"

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1313
### Changed
1414

1515
- CI from Ubuntu 20.04 to 22.04
16+
- oldest supported OTP version from 22 to 24
1617

1718
## [2.3.11] - 2024-12-15
1819

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Hex downloads](https://img.shields.io/hexpm/dt/locus.svg)](https://hex.pm/packages/locus)
44
[![License](https://img.shields.io/hexpm/l/locus.svg)](https://github.com/g-andrade/locus/blob/master/LICENSE)
5-
[![Erlang Versions](https://img.shields.io/badge/Erlang%2FOTP-22%20to%2027-blue)](https://www.erlang.org)
5+
[![Erlang Versions](https://img.shields.io/badge/Erlang%2FOTP-24%20to%2027-blue)](https://www.erlang.org)
66
[![CI status](https://github.com/g-andrade/locus/actions/workflows/ci.yml/badge.svg)](https://github.com/g-andrade/locus/actions/workflows/ci.yml)
77
[![Latest version](https://img.shields.io/hexpm/v/locus.svg?style=flat)](https://hex.pm/packages/locus)
88
[![API reference](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/locus/)

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
%% == Erlang Compiler == %%
44

5-
{minimum_otp_vsn, "22"}.
5+
{minimum_otp_vsn, "22"}. % but only 24+ is supported
66

77
{erl_opts, [
88
debug_info,

0 commit comments

Comments
 (0)