From 9f430d57735bcf0bb413cd11a02e5d0b54f35961 Mon Sep 17 00:00:00 2001 From: Ivan Wills Date: Mon, 9 Jul 2018 17:03:03 +1000 Subject: [PATCH] Updating for release of version 0.4.8 --- Changes | 10 ++++++++++ eg/SubModules/First.pm | 2 +- eg/SubModules/Second.pm | 2 +- eg/sub-command-modules.pl | 2 +- lib/Getopt/Alt.pm | 6 +++--- lib/Getopt/Alt/Command.pm | 4 ++-- lib/Getopt/Alt/CookBook.pod | 2 +- lib/Getopt/Alt/Dynamic.pm | 4 ++-- lib/Getopt/Alt/Exception.pm | 4 ++-- lib/Getopt/Alt/Option.pm | 4 ++-- 10 files changed, 25 insertions(+), 15 deletions(-) diff --git a/Changes b/Changes index bed31e2..6ff5677 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,15 @@ Revision history for Getopt-Alt +0.4.8 2018-07-09 + Updating for release of version 0.4.8 + Adding new files to manifest (Ivan Wills) + Fixed bug in file loaded (Ivan Wills) + Updated date (Ivan Wills) + Fixed warning (Ivan Wills) + Making the method to use explicit (Ivan Wills) + Starting to get subcommands as modules working (Ivan Wills) + New examples for Module based subcommands (Ivan Wills) + 0.4.7 2017-09-24 Updating for release of version 0.4.7 Increasing minimum acceptible version of Test::Warnings (Ivan Wills) diff --git a/eg/SubModules/First.pm b/eg/SubModules/First.pm index 600c3c2..b1be351 100644 --- a/eg/SubModules/First.pm +++ b/eg/SubModules/First.pm @@ -17,7 +17,7 @@ use Data::Dumper qw/Dumper/; use English qw/ -no_match_vars /; -our $VERSION = version->new('0.4.7'); +our $VERSION = version->new('0.4.8'); our @EXPORT_OK = qw//; our %EXPORT_TAGS = (); #our @EXPORT = qw//; diff --git a/eg/SubModules/Second.pm b/eg/SubModules/Second.pm index a6c420e..73c3016 100644 --- a/eg/SubModules/Second.pm +++ b/eg/SubModules/Second.pm @@ -17,7 +17,7 @@ use Data::Dumper qw/Dumper/; use English qw/ -no_match_vars /; -our $VERSION = version->new('0.4.7'); +our $VERSION = version->new('0.4.8'); our @EXPORT_OK = qw//; our %EXPORT_TAGS = (); #our @EXPORT = qw//; diff --git a/eg/sub-command-modules.pl b/eg/sub-command-modules.pl index 81f18ad..ef9b4d0 100755 --- a/eg/sub-command-modules.pl +++ b/eg/sub-command-modules.pl @@ -14,7 +14,7 @@ use FindBin qw/$Bin/; use lib $Bin; -our $VERSION = version->new('0.4.7'); +our $VERSION = version->new('0.4.8'); my ($name) = $PROGRAM_NAME =~ m{^.*/(.*?)$}mxs; main(); diff --git a/lib/Getopt/Alt.pm b/lib/Getopt/Alt.pm index c2db42a..c243a82 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.7'); +our $VERSION = version->new('0.4.8'); our $EXIT = 1; has options => ( @@ -534,7 +534,7 @@ Getopt::Alt - Command line option passing with with lots of features =head1 VERSION -This documentation refers to Getopt::Alt version 0.4.7. +This documentation refers to Getopt::Alt version 0.4.8. =head1 SYNOPSIS @@ -827,7 +827,7 @@ file to get auto-completion. } complete -F _eg eg -B: This is different from version 0.4.7 and earlier +B: This is different from version 0.4.8 and earlier =head1 DIAGNOSTICS diff --git a/lib/Getopt/Alt/Command.pm b/lib/Getopt/Alt/Command.pm index 3068b34..0674bc8 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.7'); +our $VERSION = version->new('0.4.8'); 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.7. +This documentation refers to Getopt::Alt::Command version 0.4.8. =head1 SYNOPSIS diff --git a/lib/Getopt/Alt/CookBook.pod b/lib/Getopt/Alt/CookBook.pod index 681795c..54a5777 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.7. +This documentation refers to Getopt::Alt version 0.4.8. =head1 EXAMPLES diff --git a/lib/Getopt/Alt/Dynamic.pm b/lib/Getopt/Alt/Dynamic.pm index 101436a..2783faf 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.7'); +our $VERSION = version->new('0.4.8'); 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.7. +This documentation refers to Getopt::Alt::Dynamic version 0.4.8. =head1 SYNOPSIS diff --git a/lib/Getopt/Alt/Exception.pm b/lib/Getopt/Alt/Exception.pm index c4d9000..6eac4e9 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.7'); +our $VERSION = version->new('0.4.8'); 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.7. +This documentation refers to Getopt::Alt::Exception version 0.4.8. =head1 SYNOPSIS diff --git a/lib/Getopt/Alt/Option.pm b/lib/Getopt/Alt/Option.pm index 3a8e701..4169582 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.7'); +our $VERSION = version->new('0.4.8'); 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.7. +This documentation refers to Getopt::Alt::Option version 0.4.8. =head1 SYNOPSIS