diff --git a/Changes b/Changes index 366dcef..d7b01fd 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Getopt-Alt +0.4.4 2017-07-23 + Updating for release of version 0.4.4 + Added test for processing unknown type (Ivan Wills) + Added test to make sure that sub parameter is set (Ivan Wills) + Setting minimum Perl version to 5.10 (Ivan Wills) + 0.4.3 2017-05-14 Updating for release of version 0.4.3 Updated license (Ivan Wills) diff --git a/lib/Getopt/Alt.pm b/lib/Getopt/Alt.pm index 762a088..a5535b1 100644 --- a/lib/Getopt/Alt.pm +++ b/lib/Getopt/Alt.pm @@ -28,7 +28,7 @@ Moose::Exporter->setup_import_methods( as_is => [qw/get_options/], ); -our $VERSION = version->new('0.4.3'); +our $VERSION = version->new('0.4.4'); our $EXIT = 1; has options => ( @@ -522,7 +522,7 @@ Getopt::Alt - Command line option passing with with lots of features =head1 VERSION -This documentation refers to Getopt::Alt version 0.4.3. +This documentation refers to Getopt::Alt version 0.4.4. =head1 SYNOPSIS @@ -815,7 +815,7 @@ file to get auto-completion. } complete -F _eg eg -B: This is different from version 0.4.3 and earlier +B: This is different from version 0.4.4 and earlier =head1 DIAGNOSTICS diff --git a/lib/Getopt/Alt/Command.pm b/lib/Getopt/Alt/Command.pm index 2d30641..85fcbca 100644 --- a/lib/Getopt/Alt/Command.pm +++ b/lib/Getopt/Alt/Command.pm @@ -11,7 +11,7 @@ use version; use Carp; use English qw/ -no_match_vars /; -our $VERSION = version->new('0.4.3'); +our $VERSION = version->new('0.4.4'); has cmd => ( is => 'ro', @@ -56,7 +56,7 @@ Getopt::Alt::Command - Base for sub commands =head1 VERSION -This documentation refers to Getopt::Alt::Command version 0.4.3. +This documentation refers to Getopt::Alt::Command version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Getopt/Alt/CookBook.pod b/lib/Getopt/Alt/CookBook.pod index 7028953..740bfb9 100644 --- a/lib/Getopt/Alt/CookBook.pod +++ b/lib/Getopt/Alt/CookBook.pod @@ -4,7 +4,7 @@ Getopt::Alt::CookBook - Example usages of Getopt::Alt; =head1 VERSION -This documentation refers to Getopt::Alt version 0.4.3. +This documentation refers to Getopt::Alt version 0.4.4. =head1 EXAMPLES diff --git a/lib/Getopt/Alt/Dynamic.pm b/lib/Getopt/Alt/Dynamic.pm index 332e6ea..6f23324 100644 --- a/lib/Getopt/Alt/Dynamic.pm +++ b/lib/Getopt/Alt/Dynamic.pm @@ -10,7 +10,7 @@ use Moose; use version; use Carp; -our $VERSION = version->new('0.4.3'); +our $VERSION = version->new('0.4.4'); 1; @@ -22,7 +22,7 @@ Getopt::Alt::Dynamic - Base for creating the dynamic command line elements =head1 VERSION -This documentation refers to Getopt::Alt::Dynamic version 0.4.3. +This documentation refers to Getopt::Alt::Dynamic version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Getopt/Alt/Exception.pm b/lib/Getopt/Alt/Exception.pm index ec7bbd8..4b4f970 100644 --- a/lib/Getopt/Alt/Exception.pm +++ b/lib/Getopt/Alt/Exception.pm @@ -12,7 +12,7 @@ use overload '""' => sub { shift->message }; extends 'Throwable::Error'; -our $VERSION = version->new('0.4.3'); +our $VERSION = version->new('0.4.4'); has help => ( is => 'rw', @@ -37,7 +37,7 @@ Getopt::Alt::Exception - I have forgotten where I was going with this =head1 VERSION -This documentation refers to Getopt::Alt::Exception version 0.4.3. +This documentation refers to Getopt::Alt::Exception version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Getopt/Alt/Option.pm b/lib/Getopt/Alt/Option.pm index 6431c3b..03de4a8 100644 --- a/lib/Getopt/Alt/Option.pm +++ b/lib/Getopt/Alt/Option.pm @@ -19,7 +19,7 @@ Moose::Exporter->setup_import_methods( #with_meta => ['operation'], ); -our $VERSION = version->new('0.4.3'); +our $VERSION = version->new('0.4.4'); Moose::Util::meta_attribute_alias('Getopt::Alt::Option'); @@ -293,7 +293,7 @@ Getopt::Alt::Option - Sets up a particular command line option =head1 VERSION -This documentation refers to Getopt::Alt::Option version 0.4.3. +This documentation refers to Getopt::Alt::Option version 0.4.4. =head1 SYNOPSIS