Version bump and travis fix

- Amend min version of Getopt::Long for Travis
- Bump the dist version
This commit is contained in:
Duncan Ferguson 2018-11-25 13:03:30 +00:00
parent e857392130
commit e5c33c6e13
3 changed files with 7 additions and 2 deletions

View file

@ -5,7 +5,7 @@ package App::ClusterSSH;
# ABSTRACT: Cluster administration tool
# ABSTRACT: Cluster administration tool
use version; our $VERSION = version->new('4.13.2_01');
use version; our $VERSION = version->new('4.13.2_02');
=head1 SYNOPSIS

View file

@ -16,7 +16,7 @@ Object representing application configuration
use Carp;
use Try::Tiny;
use Pod::Usage;
use Getopt::Long 2.5 qw(:config no_ignore_case bundling no_auto_abbrev);
use Getopt::Long 2.48 qw(:config no_ignore_case bundling no_auto_abbrev);
use FindBin qw($Script);
use base qw/ App::ClusterSSH::Base /;