Skip to content

Commit

Permalink
Updating for release of version 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills-optus committed Mar 13, 2019
1 parent 442bdff commit e8a8372
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 15 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for Getopt-Alt

0.5.3 2019-03-13
Updating for release of version 0.5.3
Too much js programming forgetting my Perl (Ivan Wills)

0.5.2 2019-02-28
Updating for release of version 0.5.2
Fixing up how autocompletion (Ivan Wills)
Expand Down
2 changes: 1 addition & 1 deletion eg/SubModules/First.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use Data::Dumper qw/Dumper/;
use English qw/ -no_match_vars /;


our $VERSION = version->new('0.5.2');
our $VERSION = version->new('0.5.3');
our @EXPORT_OK = qw//;
our %EXPORT_TAGS = ();
#our @EXPORT = qw//;
Expand Down
2 changes: 1 addition & 1 deletion eg/SubModules/Second.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use Data::Dumper qw/Dumper/;
use English qw/ -no_match_vars /;


our $VERSION = version->new('0.5.2');
our $VERSION = version->new('0.5.3');
our @EXPORT_OK = qw//;
our %EXPORT_TAGS = ();
#our @EXPORT = qw//;
Expand Down
2 changes: 1 addition & 1 deletion eg/sub-command-modules.pl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use FindBin qw/$Bin/;
use lib $Bin;

our $VERSION = version->new('0.5.2');
our $VERSION = version->new('0.5.3');
my ($name) = $PROGRAM_NAME =~ m{^.*/(.*?)$}mxs;

main();
Expand Down
6 changes: 3 additions & 3 deletions lib/Getopt/Alt.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Moose::Exporter->setup_import_methods(
as_is => [qw/get_options/],
);

our $VERSION = version->new('0.5.2');
our $VERSION = version->new('0.5.3');
our $EXIT = 1;

has options => (
Expand Down Expand Up @@ -600,7 +600,7 @@ Getopt::Alt - Command line option passing with with lots of features
=head1 VERSION
This documentation refers to Getopt::Alt version 0.5.2.
This documentation refers to Getopt::Alt version 0.5.3.
=head1 SYNOPSIS
Expand Down Expand Up @@ -905,7 +905,7 @@ file to get auto-completion.
}
complete -F _eg eg
B<Note>: This is different from version 0.5.2 and earlier
B<Note>: This is different from version 0.5.3 and earlier
=head1 DIAGNOSTICS
Expand Down
4 changes: 2 additions & 2 deletions lib/Getopt/Alt/Command.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use version;
use Carp;
use English qw/ -no_match_vars /;

our $VERSION = version->new('0.5.2');
our $VERSION = version->new('0.5.3');

has cmd => (
is => 'ro',
Expand Down Expand Up @@ -56,7 +56,7 @@ Getopt::Alt::Command - Base for sub commands
=head1 VERSION
This documentation refers to Getopt::Alt::Command version 0.5.2.
This documentation refers to Getopt::Alt::Command version 0.5.3.
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion lib/Getopt/Alt/CookBook.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Getopt::Alt::CookBook - Example usages of Getopt::Alt;

=head1 VERSION

This documentation refers to Getopt::Alt version 0.5.2.
This documentation refers to Getopt::Alt version 0.5.3.

=head1 EXAMPLES

Expand Down
4 changes: 2 additions & 2 deletions lib/Getopt/Alt/Dynamic.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Moose;
use version;
use Carp;

our $VERSION = version->new('0.5.2');
our $VERSION = version->new('0.5.3');

1;

Expand All @@ -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.5.2.
This documentation refers to Getopt::Alt::Dynamic version 0.5.3.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Getopt/Alt/Exception.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use overload '""' => sub { shift->message };

extends 'Throwable::Error';

our $VERSION = version->new('0.5.2');
our $VERSION = version->new('0.5.3');

has help => (
is => 'rw',
Expand All @@ -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.5.2.
This documentation refers to Getopt::Alt::Exception version 0.5.3.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Getopt/Alt/Option.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Moose::Exporter->setup_import_methods(
#with_meta => ['operation'],
);

our $VERSION = version->new('0.5.2');
our $VERSION = version->new('0.5.3');

Moose::Util::meta_attribute_alias('Getopt::Alt::Option');

Expand Down Expand Up @@ -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.5.2.
This documentation refers to Getopt::Alt::Option version 0.5.3.
=head1 SYNOPSIS
Expand Down

0 comments on commit e8a8372

Please sign in to comment.