dialyzex icon indicating copy to clipboard operation
dialyzex copied to clipboard

Set the OTP apps for the PLT based on release version

Open seancribbs opened this issue 3 years ago • 1 comments

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

seancribbs avatar Jun 29 '21 15:06 seancribbs

will double-check and run these checks too.

zeeshanlakhani avatar Jul 06 '21 15:07 zeeshanlakhani