dialyzex
dialyzex copied to clipboard
Set the OTP apps for the PLT based on release version
This was determined by checking the contents of the lib
directory for each of
the first release tags in a particular major OTP version, roughly like below:
for v in {17..24}; do
git ls-tree -r -d "OTP-${v}.0" lib | \
awk -F/ '{ print $2 }' | \
sort -u > ../OTP-$v.txt;
done
for v in {17..23}; do
diff -u ../OTP-$v.txt ../OTP-$((v+1)).txt;
echo;
done
will double-check and run these checks too.