Skip to content

Commit 304dd15

Browse files
authored
Merge pull request #2952 from ferd/prepare-otp-28-bump
Prepare OTP-28 bump
2 parents be80f70 + a0aeffe commit 304dd15

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Common Test
33
on: [pull_request, push]
44

55
env:
6-
LATEST_OTP_RELEASE: 27
6+
LATEST_OTP_RELEASE: 28
77

88
jobs:
99
linux:
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
otp_version: [25, 26, 27]
15+
otp_version: [26, 27, 28]
1616
os: [ubuntu-latest]
1717

1818
container:
@@ -52,7 +52,9 @@ jobs:
5252
- name: Debug Brew
5353
run: brew doctor || true
5454
- name: Install Erlang
55-
run: brew install erlang@${{ env.LATEST_OTP_RELEASE }}
55+
# fallback to OTP-27 since OTP-28 does not currently build on Brew
56+
# run: brew install erlang@${{ env.LATEST_OTP_RELEASE }}
57+
run: brew install erlang@27
5658
- name: Compile
5759
run: ./bootstrap
5860
- name: CT tests

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- uses: erlef/setup-beam@v1
1717
with:
18-
otp-version: '25'
18+
otp-version: '26'
1919
- name: Compile
2020
run: ./bootstrap
2121
- name: CT tests

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: erlef/setup-beam@v1
2020
with:
21-
otp-version: '25'
21+
otp-version: '26'
2222
- name: Compile
2323
run: ./bootstrap
2424
- name: CT tests

README.md

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

33
[![Build Status](https://github.com/erlang/rebar3/workflows/Common%20Test/badge.svg)](https://github.com/erlang/rebar3/actions)
44
[![License](https://img.shields.io/github/license/erlang/rebar3)](https://github.com/erlang/rebar3/blob/main/LICENSE)
5-
[![Erlang Versions](https://img.shields.io/badge/Supported%20Erlang%2FOTP-25.0%20to%2027.0-blue)](http://www.erlang.org)
5+
[![Erlang Versions](https://img.shields.io/badge/Supported%20Erlang%2FOTP-26.0%20to%2028.0-blue)](http://www.erlang.org)
66

77
1. [What is Rebar3?](#what-is-rebar3)
88
2. [Why Rebar3?](#why-rebar3)
@@ -63,6 +63,7 @@ security fixes.
6363

6464
| Rebar3 | Erlang/OTP Support Range | Notes
6565
|- |- | -
66+
| 3.25.0 | 26-28 |
6667
| 3.24.0 | 25-27 |
6768
| 3.23.0 | 25-27 |
6869
| 3.22.1 | 25-27 |
@@ -73,7 +74,7 @@ security fixes.
7374
| 3.17.0 | 22-24 |
7475
| 3.16.1 | 22-24 | Don't use 3.16.0, see https://ferd.ca/you-ve-got-to-upgrade-rebar3.html
7576
| 3.15.2 | 19-23 | Don't use 3.15.0 or 3.15.1, see https://ferd.ca/you-ve-got-to-upgrade-rebar3.html
76-
| 3.14.1 | 19-23 |
77+
| 3.14.1 | 19-23 |
7778
| 3.13.3 | 19-22 | Don't use 3.13.1 or 3.13.2, see https://ferd.ca/you-ve-got-to-upgrade-rebar3.html
7879

7980
A [getting started guide is maintained on the official documentation website](https://rebar3.org/docs/getting-started),

0 commit comments

Comments
 (0)