I broke backward compatibility of Find::Lib. It's not on CPAN just yet, but it will be soon.
I know that potentially breaking other people's code is bad but on the other hand, what I'm deprecating was a serious stupid idea of mine. I think it's better that way. Besides, it will be version 1.0: major release *blink* *blink*.
Now you can do:
use Find::Lib 'lib1', '../lib2'; # much simpler!In case you wonder, the stupid idea was to write:
print Find::Lib->catfile('path', 'to', 'somefile.txt'); # convenient!
use Find::Lib 'mylib' => 'MyBootstrap' => 'bla';instead of:
use Find::Lib 'mylib';I'm sure nobody relies on that anyway.
use MyBootstrap 'bla';