Skip to content

Commit cc1b222

Browse files
committed
Rebar 3.19.0
New features: - [Add --offline option and REBAR_OFFLINE environment variable](#2643) - [Add support for project-local plugins](#2697) - [Add eunit --test flag](#2684) Experimental features for which we promise no backwards compatibility in the near future: - [Experimental vendoring provider](#2689) - [Support plugins in experimental vendor provider](#2702) Other changes: - [Support OTP 23..25 inclusively](#2706) - [Bump Relx to 4.7.0](#2718) - [Use `erlexec` directly in relx helper functions](erlware/relx#902) - [Make rlx_util:parse_vsn parse integer versions](erlware/relx#913) - [fix awk script check_name() in extended_bin](erlware/relx#915) - [avoid crash when overlay is malformed](erlware/relx#916) - [keep attributes when stripping beams](erlware/relx#906) - [Fix {include_erts,true} in Windows releases](erlware/relx#914) - [ensure the erl file is writable before copying dyn_erl to it](erlware/relx#903) - Various tests added - [Properly carry overlay_vars settings for files in relx](#2711) - [Track mib compilation artifacts](#2709) - [Attempt to find apps in git subdirs (sparse checkouts)](#2687) - [Do not discard parameters --system_libs and --include-erts when duplicate values exist](#2695) - [Use default `depth` parameter for SSL](#2690) - [Fix global cache config overriding](#2683) - [Error out on unknown templates in 'new' command](#2676) - [Fix a typo](#2674) - [Bump certifi to 2.9.0](#2673) - [add a debug message in internal dependency fetching code](#2672) - [Use SPDX id for license in template and test](#2668) - [Use default branch for git and git_subdir resources with no revision](#2663) Signed-off-by: Fred Hebert <[email protected]>
1 parent f51fb05 commit cc1b222

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ main(Args) ->
5555
bootstrap_rebar3(),
5656

5757
%% Build rebar.app from rebar.app.src
58-
{ok, App} = rebar_app_info:new(rebar, "3.18.0", filename:absname("_build/default/lib/rebar/")),
58+
{ok, App} = rebar_app_info:new(rebar, "3.19.0", filename:absname("_build/default/lib/rebar/")),
5959
rebar_otp_app:compile(rebar_state:new(), App),
6060

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

rebar.config

Lines changed: 1 addition & 1 deletion
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.18.0\n"}.
26+
{escript_comment, "%%Rebar3 3.19.0\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.

src/rebar.app.src.script

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

44
{application, rebar,
55
[{description, "Rebar: Erlang Build Tool"},
6-
{vsn, "3.18.0"},
6+
{vsn, "3.19.0"},
77
{modules, []},
88
{registered, []},
99
{applications, [kernel,

0 commit comments

Comments
 (0)