After reading 10.2 Release Resource File , I get the impression that each release of the application is very attached to a specific version of Erlang OTP, is that true?
Can I write version information to a .rel file in the following lines?
{release,
{"ch_rel", "A"},
{erts, "5.3"},
[{kernel, ">=2.9"},
{stdlib, ">=1.12"},
{sasl, ">=1.10"},
{ch_app, "1"}]
}.
source
share