- New upstream release 1.002002
- Fix bug in handling regexps in import lists; Exporter::Tiny allowed regexps
like /foo/i but not /foo/; having trailing flags is now optional! (GH#6)
- Tests would fail if 'PERL5OPT=-Mfeature=:5.18' environment variable was set;
this is because bareword '-default' was being interpreted as the Perl
'default' keyword (GH#5)
- Unbundle newly-bundled test modules
- New upstream release 1.002001
- Added support for generating and exporting non-code symbols such as $Foo,
@Bar, and %Baz
- Improved test coverage, up from 88.78% on coveralls.io to 96.74%
- New upstream release 1.000000
- Repackage as 1.000000
- All shipped files are now GPL+ or Artistic
- Drop EL-5 support
- Drop BuildRoot: and Group: tags
- Drop explicit buildroot cleaning in %install section
- Drop explicit %clean section
- New upstream release 0.040
- Document warning and error messages produced by Exporter::Tiny
- Exporter::Tiny would previously cause B.pm to be loaded into memory any
time it exported anything: it no longer does
- No longer die when redefining locally defined subs
- Warn when redefining any subs
- Use %license where possible
- New upstream release 0.038
- Added: Support Exporter.pm's import negation syntax qw( !foo )
- Added: Support Exporter.pm's regexp import syntax qw( /foo/ )
- Fix minor error in documentation of generators
- Improved handling of hashrefs of options passed to tags, and hashrefs of
options found within %EXPORT_TAGS arrayrefs
- Only attempt to merge hashes if we're sure they're both really hashes!
Exporter::Tiny supports many of Sub::Exporter's external-facing features
including renaming imported functions with the -as, -prefix and -suffix
options; explicit destinations with the into option; and alternative
installers with the installer option. But it's written in only about 40%
as many lines of code and with zero non-core dependencies.
Its internal-facing interface is closer to Exporter.pm, with configuration
done through the @EXPORT, @EXPORT_OK and %EXPORT_TAGS package variables.
Exporter::Tiny performs most of its internal duties (including resolution of
tag names to sub names, resolution of sub names to coderefs, and installation
of coderefs into the target package) as method calls, which means they can be
overridden to provide interesting behavior.