Peter Rabbitson [Tue, 12 Mar 2013 22:52:11 +0000]
Fatal warns in Makefile.PL is overkill
Peter Rabbitson [Tue, 12 Mar 2013 22:51:29 +0000]
5.6 compat
Peter Rabbitson [Tue, 12 Mar 2013 22:49:20 +0000]
Drop Test::Builder dep - subtests are overkill here
Peter Rabbitson [Tue, 12 Mar 2013 21:57:23 +0000]
Switch tabs to 3-space (from bad to worse)
Peter Rabbitson [Tue, 12 Mar 2013 21:40:04 +0000]
gitignoring
Toby Inkster [Sat, 9 Mar 2013 16:21:03 +0000]
Disallow numbers in imports for consistency with Sub::Exporter
Exporter.pm does this silly thing where it interprets import arguments
starting with a digit as being a version check.
For example, given this, Exporter.pm will check that Carp.pm's version
number is at least 1000 (unlikely!)
$ perl -e'use Carp carp => "1000"'
If the number appears first in the import list, Perl will already do
this for you, not involving Exporter.pm at all:
$ perl -e'use Carp 1000, "carp"'
So it's not obvious why this feature was included in Exporter.pm at all.
Not many people seem to have noticed the feature is even there, though
it is documented. (However, the documentation of it does not quite match
its implementation!)
Anyhow, this feature seems a bad idea to use, and more importantly it
leads to a difference between how Exporter.pm and Sub::Exporter work.
Sub::Exporter::Progressive should attempt to smooth over such differences,
so it should I<always> die in this situation, whether Exporter.pm or
Sub::Exporter is being used.
Leon Timmermans [Tue, 22 Jan 2013 00:12:45 +0000]
Release commit for 0.001008
Leon Timmermans [Mon, 21 Jan 2013 23:53:49 +0000]
Fix prereqs
Leon Timmermans [Mon, 21 Jan 2013 23:53:44 +0000]
Bump to version 0.001008
Leon Timmermans [Mon, 21 Jan 2013 18:34:22 +0000]
Release commit for 0.001007
Leon Timmermans [Mon, 21 Jan 2013 14:49:14 +0000]
Cleanup
Leon Timmermans [Mon, 21 Jan 2013 14:48:47 +0000]
Rewrite -tag to :tag for Exporter.pm
Tests written by Toby Inkster
Leon Timmermans [Sun, 6 Jan 2013 14:24:46 +0000]
Simplified "too complicated" handling
Leon Timmermans [Sun, 6 Jan 2013 14:00:57 +0000]
Bump to version 0.001007
Leon Timmermans [Mon, 27 Aug 2012 11:14:19 +0000]
Release commit for 0.001006
Leon Timmermans [Mon, 27 Aug 2012 11:11:04 +0000]
Handle ':all' correctly
Not sure this ever worked correctly in the first place
Leon Timmermans [Mon, 27 Aug 2012 11:10:52 +0000]
Bump version to 0.001006
Leon Timmermans [Sat, 25 Aug 2012 16:42:06 +0000]
Release commit for 0.001005
Leon Timmermans [Sat, 25 Aug 2012 16:07:01 +0000]
Added myself to contributors
Leon Timmermans [Sat, 11 Aug 2012 11:24:40 +0000]
Add explicit dependency on Test::More 0.89
Leon Timmermans [Sat, 11 Aug 2012 11:24:25 +0000]
Add support for tags
Leon Timmermans [Sat, 11 Aug 2012 11:08:17 +0000]
Warn if defaults are not in exports
Leon Timmermans [Sat, 11 Aug 2012 11:05:56 +0000]
Fix unicodeness in POD
Leon Timmermans [Sat, 25 Aug 2012 16:40:58 +0000]
Bump version to 0.001005
Matt S Trout [Thu, 9 Aug 2012 12:38:05 +0000]
Release commit for 0.001004
Matt S Trout [Thu, 9 Aug 2012 12:25:11 +0000]
Distar
Dagfinn Ilmari Mannsåker [Thu, 9 Aug 2012 12:08:50 +0000]
fix skipping when Sub::Exporter isn't installed
Arthur Axel 'fREW' Schmidt [Wed, 1 Aug 2012 17:47:56 +0000]
v0.001003
- remove warning if there are no defaults
Arthur Axel 'fREW' Schmidt [Wed, 1 Aug 2012 17:45:05 +0000]
remove warning if there are no defaults
Arthur Axel 'fREW' Schmidt [Tue, 31 Jul 2012 13:59:53 +0000]
v0.001002
- Make Sub::Exporter an optional dep (which is kinda the whole point)
- warning about too complex usage of Sub::Exporter::Progressive is now
an exception
Arthur Axel 'fREW' Schmidt [Tue, 31 Jul 2012 13:57:34 +0000]
warn re complex usage of S::E::P is now exception
Arthur Axel 'fREW' Schmidt [Tue, 31 Jul 2012 13:55:35 +0000]
Make Sub::Exporter an optional dep (which is kinda the whole point)
Arthur Axel 'fREW' Schmidt [Mon, 30 Jul 2012 00:58:49 +0000]
v0.001001
- Fix '-all' option for the default group
Arthur Axel 'fREW' Schmidt [Mon, 30 Jul 2012 00:58:27 +0000]
Fix '-all' option for the default group
Arthur Axel 'fREW' Schmidt [Sun, 29 Jul 2012 21:44:11 +0000]
v0.001000
- Initial Release
Arthur Axel 'fREW' Schmidt [Sun, 29 Jul 2012 21:43:57 +0000]
line numbers will match in the code now
Arthur Axel 'fREW' Schmidt [Sun, 29 Jul 2012 21:38:45 +0000]
initial commit