Skip to content

0.4.0: Square-brackets no more

Compare
Choose a tag to compare
@avescodes avescodes released this 24 Oct 11:14
· 11 commits to master since this release

This isn't a big release, but it is a breaking change.

As of 0.4.0 lein-try no longer supports square brackets ([ ]) as a means of specifying dependency name/version pairs. Square brackets are simply too wonky in ZSH and BASH to continue risking that users encounter odd behavior because of them. See #16 for more info.

Where you used to say: lein try [clj-time "0.1.0"]
You must now say: lein try clj-time "0.1.0"

To upgrade, modify your ~/.lein/profiles.clj to include [lein-try "0.4.0"] like so:

{:user {:plugins [ ;; ...
                  [lein-try "0.4.0"]
                  ; ...
                  ]}}