picocli v4.6.3-new Release Notes

  • 0️⃣ Default branch renamed to main

    0️⃣ The default branch has been renamed! master is now named main.

    ⚡️ If you have a local clone, you can update it by running the following commands:

    git branch -m master main
    git fetch origin
    git branch -u origin/main main
    git remote set-head origin -a
    

    Autocompletion script improvements

    • Autocompletion now shows subcommand aliases in the completion candidates
    • Autocompletion now displays completion candidates on exact match
    • 👍 Autocompletion now supports file names containing spaces
    • ✂ Remove file name extension and local dir prefix from the command name in generated autocomplete scripts
    • 🛠 Fix Bash error compopt: command not found on older versions of Bash
    • Autocompletion on ZSH should only call compinit once