diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a4415f61b..b86054605 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,6 +45,8 @@ jobs: run: brew --version - name: Brew Cleanup run: brew cleanup + - name: Brew Untap Casks + run: brew untap homebrew/cask homebrew/core - name: Debug Brew run: brew doctor - name: Keep Brew Fresh diff --git a/apps/rebar/rebar.config b/apps/rebar/rebar.config index 0e7cd3471..69fc1e1fb 100644 --- a/apps/rebar/rebar.config +++ b/apps/rebar/rebar.config @@ -23,7 +23,7 @@ {escript_name, rebar3}. {escript_wrappers_windows, ["cmd", "powershell"]}. -{escript_comment, "%%Rebar3 3.22.0\n"}. +{escript_comment, "%%Rebar3 3.22.1\n"}. {escript_emu_args, "%%! +sbtu +A1\n"}. %% escript_incl_priv is for internal rebar-private use only. %% Do not use outside rebar. Config interface is not stable. diff --git a/apps/rebar/src/rebar.app.src.script b/apps/rebar/src/rebar.app.src.script index ec2ee0ca1..6a3afbb18 100644 --- a/apps/rebar/src/rebar.app.src.script +++ b/apps/rebar/src/rebar.app.src.script @@ -2,7 +2,7 @@ %% ex: ts=4 sw=4 ft=erlang et {application, rebar, [{description, "Rebar: Erlang Build Tool"}, - {vsn, "git"}, + {vsn, "3.22.1"}, {modules, []}, {registered, []}, {applications, [kernel, diff --git a/bootstrap b/bootstrap index 7d151aa26..4fe13e6d7 100755 --- a/bootstrap +++ b/bootstrap @@ -53,7 +53,7 @@ main(Args) -> bootstrap_rebar3(), %% Build rebar.app from rebar.app.src - {ok, App} = rebar_app_info:new(rebar, "3.22.0", filename:absname("_build/default/lib/rebar/")), + {ok, App} = rebar_app_info:new(rebar, "3.22.1", filename:absname("_build/default/lib/rebar/")), rebar_otp_app:compile(rebar_state:new(), App), %% Because we are compiling files that are loaded already we want to silence diff --git a/rebar.config b/rebar.config index 6a540d2ce..4a13c2140 100644 --- a/rebar.config +++ b/rebar.config @@ -11,7 +11,7 @@ {escript_main_app, rebar}. {escript_name, rebar3}. {escript_wrappers_windows, ["cmd", "powershell"]}. -{escript_comment, "%%Rebar3 3.22.0\n"}. +{escript_comment, "%%Rebar3 3.22.1\n"}. {escript_emu_args, "%%! +sbtu +A1\n"}. %% escript_incl_priv is for internal rebar-private use only. %% Do not use outside rebar. Config interface is not stable.