Skip to content

Commit 26400cd

Browse files
committed
Bump to 3.22.1
1 parent c46bec6 commit 26400cd

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.github/workflows/main.yml

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ jobs:
4545
run: brew --version
4646
- name: Brew Cleanup
4747
run: brew cleanup
48+
- name: Brew Untap Casks
49+
run: brew untap homebrew/cask homebrew/core
4850
- name: Debug Brew
4951
run: brew doctor
5052
- name: Keep Brew Fresh

apps/rebar/rebar.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
{escript_name, rebar3}.
2525
{escript_wrappers_windows, ["cmd", "powershell"]}.
26-
{escript_comment, "%%Rebar3 3.22.0\n"}.
26+
{escript_comment, "%%Rebar3 3.22.1\n"}.
2727
{escript_emu_args, "%%! +sbtu +A1\n"}.
2828
%% escript_incl_priv is for internal rebar-private use only.
2929
%% Do not use outside rebar. Config interface is not stable.

apps/rebar/src/rebar.app.src.script

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% ex: ts=4 sw=4 ft=erlang et
33
{application, rebar,
44
[{description, "Rebar: Erlang Build Tool"},
5-
{vsn, "git"},
5+
{vsn, "3.22.1"},
66
{modules, []},
77
{registered, []},
88
{applications, [kernel,

bootstrap

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ main(Args) ->
5353
bootstrap_rebar3(),
5454

5555
%% Build rebar.app from rebar.app.src
56-
{ok, App} = rebar_app_info:new(rebar, "3.22.0", filename:absname("_build/default/lib/rebar/")),
56+
{ok, App} = rebar_app_info:new(rebar, "3.22.1", filename:absname("_build/default/lib/rebar/")),
5757
rebar_otp_app:compile(rebar_state:new(), App),
5858

5959
%% Because we are compiling files that are loaded already we want to silence

rebar.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
{escript_main_app, rebar}.
1212
{escript_name, rebar3}.
1313
{escript_wrappers_windows, ["cmd", "powershell"]}.
14-
{escript_comment, "%%Rebar3 3.22.0\n"}.
14+
{escript_comment, "%%Rebar3 3.22.1\n"}.
1515
{escript_emu_args, "%%! +sbtu +A1\n"}.
1616
%% escript_incl_priv is for internal rebar-private use only.
1717
%% Do not use outside rebar. Config interface is not stable.

0 commit comments

Comments
 (0)