Merge branch 'master' of gitmo@git.moose.perl.org:MooseX-Getopt
Tomas Doran [Wed, 12 Aug 2009 12:03:11 +0000 (13:03 +0100)]
* 'master' of gitmo@git.moose.perl.org:MooseX-Getopt:
  prep new release with fixed MANIFEST.SKIP
  auto_manifest
  bump version, prepare next release

ChangeLog
MANIFEST [deleted file]
MANIFEST.SKIP
Makefile.PL
README
lib/MooseX/Getopt.pm
lib/MooseX/Getopt/Meta/Attribute.pm
lib/MooseX/Getopt/Meta/Attribute/NoGetopt.pm
lib/MooseX/Getopt/Meta/Attribute/Trait.pm
lib/MooseX/Getopt/Meta/Attribute/Trait/NoGetopt.pm
lib/MooseX/Getopt/OptionTypeMap.pm

index 1bfb265..10b28cf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,13 +1,17 @@
 Revision history for Perl extension MooseX-Getopt
 
-   * MooseX::Getopt
-        - Fix Getopt config spec for --configfile (t0m)
-        - Add support for --usage/--help/--? (drew@drewtaylor.com)
-        - Fix new_with_options to accept a hashref (DOUGDUDE@cpan.org)
-
-   * Tests
-        - Fix warning from tests with new Moose (t0m)
-        - Fix tests on Win32 from RT#44909 (taro-nishino)
+0.20 Wed. July 9 2009
+       ~ fix MANIFEST.SKIP to avoid double-packaging
+
+0.19 Wed. July 8 2009
+  * MooseX::Getopt
+    - Fix Getopt config spec for --configfile (t0m)
+    - Add support for --usage/--help/--? (drew@drewtaylor.com)
+    - Fix new_with_options to accept a hashref (DOUGDUDE@cpan.org)
+
+  * Tests
+    - Fix warning from tests with new Moose (t0m)
+    - Fix tests on Win32 from RT#44909 (taro-nishino)
 
 0.18 Thu. April 9 2009
        * MooseX::Getopt::Dashes
diff --git a/MANIFEST b/MANIFEST
deleted file mode 100644 (file)
index bec9b4b..0000000
--- a/MANIFEST
+++ /dev/null
@@ -1,38 +0,0 @@
-ChangeLog
-inc/Module/AutoInstall.pm
-inc/Module/Install.pm
-inc/Module/Install/AutoInstall.pm
-inc/Module/Install/Base.pm
-inc/Module/Install/Can.pm
-inc/Module/Install/Fetch.pm
-inc/Module/Install/Include.pm
-inc/Module/Install/Makefile.pm
-inc/Module/Install/Metadata.pm
-inc/Module/Install/Win32.pm
-inc/Module/Install/WriteAll.pm
-lib/MooseX/Getopt.pm
-lib/MooseX/Getopt/Dashes.pm
-lib/MooseX/Getopt/Meta/Attribute.pm
-lib/MooseX/Getopt/Meta/Attribute/NoGetopt.pm
-lib/MooseX/Getopt/Meta/Attribute/Trait.pm
-lib/MooseX/Getopt/Meta/Attribute/Trait/NoGetopt.pm
-lib/MooseX/Getopt/OptionTypeMap.pm
-lib/MooseX/Getopt/Strict.pm
-Makefile.PL
-MANIFEST
-META.yml
-README
-t/000_load.t
-t/001_basic.t
-t/002_custom_option_type.t
-t/003_inferred_option_type.t
-t/004_nogetop.t
-t/005_strict.t
-t/006_metaclass_traits.t
-t/007_nogetopt_trait.t
-t/008_configfromfile.t
-t/009_gld_and_explicit_options.t
-t/010_dashes.t
-t/100_gld_default_bug.t
-t/pod.t
-t/pod_coverage.t
index 3de3ebc..45ff306 100644 (file)
@@ -1,3 +1,4 @@
+^.git
 ^_build
 ^Build$
 ^blib
@@ -16,4 +17,5 @@ cover_db
 \.old$
 ^#.*#$
 ^\.#
-^TODO$
\ No newline at end of file
+^TODO$
+^MooseX-Getopt
index 3ab0c74..681fd58 100644 (file)
@@ -15,6 +15,6 @@ build_requires 'Test::More'       => '0.62';
 build_requires 'Test::Exception'  => '0.21';
 
 tests_recursive();
-auto_install;
+auto_manifest();
 
 WriteAll;
diff --git a/README b/README
index 3978368..5c6b104 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-MooseX::Getopt version 0.18
+MooseX::Getopt version 0.20
 ===========================
 
 See the individual module documentation for more information
index 8a86c92..67725e9 100644 (file)
@@ -11,7 +11,7 @@ use Carp ();
 use Getopt::Long (); # GLD uses it anyway, doesn't hurt
 use constant HAVE_GLD => not not eval { require Getopt::Long::Descriptive };
 
-our $VERSION   = '0.18';
+our $VERSION   = '0.20';
 our $AUTHORITY = 'cpan:STEVAN';
 
 has ARGV       => (is => 'rw', isa => 'ArrayRef', metaclass => "NoGetopt");
index f71ea67..7bb6477 100644 (file)
@@ -3,7 +3,7 @@ package MooseX::Getopt::Meta::Attribute;
 use Moose;
 use Moose::Util::TypeConstraints;
 
-our $VERSION   = '0.18';
+our $VERSION   = '0.20';
 our $AUTHORITY = 'cpan:STEVAN';
 
 extends 'Moose::Meta::Attribute'; # << Moose extending Moose :)
index 69be43d..1d98a83 100644 (file)
@@ -2,7 +2,7 @@
 package MooseX::Getopt::Meta::Attribute::NoGetopt;
 use Moose;
 
-our $VERSION   = '0.18';
+our $VERSION   = '0.20';
 our $AUTHORITY = 'cpan:STEVAN';
 
 extends 'Moose::Meta::Attribute'; # << Moose extending Moose :)
index 3171837..74177d5 100644 (file)
@@ -3,7 +3,7 @@ package MooseX::Getopt::Meta::Attribute::Trait;
 use Moose::Role;
 use Moose::Util::TypeConstraints;
 
-our $VERSION   = '0.18';
+our $VERSION   = '0.20';
 our $AUTHORITY = 'cpan:STEVAN';
 
 has 'cmd_flag' => (
index c618f0b..180d705 100644 (file)
@@ -2,7 +2,7 @@
 package MooseX::Getopt::Meta::Attribute::Trait::NoGetopt;
 use Moose::Role;
 
-our $VERSION   = '0.18';
+our $VERSION   = '0.20';
 our $AUTHORITY = 'cpan:STEVAN';
 
 no Moose::Role;
index b0157f1..f634726 100644 (file)
@@ -4,7 +4,7 @@ package MooseX::Getopt::OptionTypeMap;
 use Moose 'confess', 'blessed';
 use Moose::Util::TypeConstraints 'find_type_constraint';
 
-our $VERSION   = '0.18';
+our $VERSION   = '0.20';
 our $AUTHORITY = 'cpan:STEVAN';
 
 my %option_type_map = (