Skip to content

Commit 1e7469c

Browse files
committed
Add Elixir 1.19 and OTP 28 to CI
1 parent 12b4277 commit 1e7469c

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ on:
2626
workflow_dispatch: # enables "click to run" button
2727

2828
env:
29-
ELIXIR_VERSION_ON_WHICH_TO_CHECK_STYLE: '1.18' # Should be highest in matrix
30-
ELIXIR_VERSIONS_ON_WHICH_TO_RUN_DIALYZER: "['1.12', '1.13', '1.14', '1.15', '1.16', '1.17', '1.18']"
29+
ELIXIR_VERSION_ON_WHICH_TO_CHECK_STYLE: '1.19' # Should be highest in matrix
30+
ELIXIR_VERSIONS_ON_WHICH_TO_RUN_DIALYZER: "['1.12', '1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19']"
3131

3232
jobs:
3333
ci:
@@ -44,7 +44,8 @@ jobs:
4444
'1.15',
4545
'1.16',
4646
'1.17',
47-
'1.18'
47+
'1.18',
48+
'1.19'
4849
]
4950
os: ['ubuntu-22.04']
5051
steps:

.github/workflows/elixir_version_to_otp_version.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"1.14": "26.2",
1010
"1.15": "26.2",
1111
"1.16": "26.2",
12-
"1.17": "27.2",
13-
"1.18": "27.2"
12+
"1.17": "27.3",
13+
"1.18": "27.3",
14+
"1.19": "28.1"
1415
}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- Elixir 1.19 to CI
13+
- OTP 28.1 to CI
14+
1015
### Changed
1116

1217
- CI from Ubuntu 20.04 to 22.04

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.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)
5+
[![Elixir Versions](https://img.shields.io/badge/Elixir-1.11%20to%201.19-blue)](https://elixir-lang.org/)
6+
[![Erlang Versions](https://img.shields.io/badge/Erlang%2FOTP-24.3%20to%2028-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

0 commit comments

Comments
 (0)