rebar_erl_vsn

defines for erlang versions

Build

$ rebar3 compile

Use

Add the plugin to your rebar config:

{plugins, [rebar_erl_vsn]}.
{provider_hooks, [{pre, [{compile, erl_vsn}]}]}.

Then just call your plugin directly in an existing application:

$ rebar3 compile
===> Fetching rebar_erl_vsn
===> Compiling rebar_erl_vsn
<Plugin Output>

Defines

When added to your project, this plugin adds a define for each major/minor pair, such as 17.5 or 18.0. These are defined whenever the current version detected by the plugin is greater than the major/minor pair, so for example a build done running 19.0 will have ‘19.0’, ‘18.3’, ‘18.2’, ‘18.1’, & so on defined, down to ‘14.0’.

For clarity, some major breakages have their own special defines. The following are defined (in addition to their corresponding version defines):

Examples

Code that runs on R18 and above:

-ifdef(&#39;18.0&#39;).
version() ->
  "18 and above".
-else.
version() ->
  "before 17".
-endif.

Targeting R17 (all variants) specially

-ifdef(&#39;17.0&#39;).
-ifndef(&#39;18.0&#39;).
%% Code only executed in R17.*
-else.
%% Code executed for R18+
-endif.
-else.
%% Code executed < R17
-endif.

md5 function that does not throw deprecation warnings:

-ifdef(new_hash).
md5(Data) ->
  crypto:hash(md5, Data).
-elseif.
md5(Data) ->
  crypto:md5(Data).
-endif.