Release 4.07

This commit is contained in:
Duncan Ferguson 2016-04-30 11:38:22 +01:00
parent 9cbd28546a
commit ede9868d55
5 changed files with 19 additions and 11 deletions

View file

@ -1,4 +1,4 @@
4.07_1 0000-00-00 Duncan Ferguson <duncan_ferguson@user.sf.net>
4.07 2016-04-30 Duncan Ferguson <duncan_ferguson@user.sf.net>
- Fixed tests on systems where bash is not installed in /bin/bash (Github issue #60)
- Include link to travis-ci site in release emails for automated build and test reports
- Rework hostname expansion to be pure-perl rather than relying on the bash shell (Github issue #53)

View file

@ -4,7 +4,7 @@
"Duncan Ferguson <duncan_j_ferguson@yahoo.co.uk>"
],
"dynamic_config" : 1,
"generated_by" : "Module::Build version 0.4216",
"generated_by" : "Module::Build version 0.4218",
"license" : [
"perl_5"
],
@ -40,6 +40,7 @@
},
"requires" : {
"Exception::Class" : "1.31",
"File::Glob" : "0",
"File::Path" : "0",
"Getopt::Long" : "0",
"Locale::Maketext" : "0",
@ -53,7 +54,7 @@
"provides" : {
"App::ClusterSSH" : {
"file" : "lib/App/ClusterSSH.pm",
"version" : "4.06"
"version" : "4.07"
},
"App::ClusterSSH::Base" : {
"file" : "lib/App/ClusterSSH/Base.pm",
@ -84,6 +85,9 @@
},
"App::ClusterSSH::L10N::en" : {
"file" : "lib/App/ClusterSSH/L10N/en.pm"
},
"App::ClusterSSH::Range" : {
"file" : "lib/App/ClusterSSH/Range.pm"
}
},
"release_status" : "stable",
@ -100,6 +104,6 @@
"http://github.com/duncs/clusterssh"
]
},
"version" : "4.06",
"x_serialization_backend" : "JSON::PP version 2.27203"
"version" : "4.07",
"x_serialization_backend" : "JSON::PP version 2.27400"
}

View file

@ -17,7 +17,7 @@ build_requires:
configure_requires:
Module::Build: '0'
dynamic_config: 1
generated_by: 'Module::Build version 0.4216, CPAN::Meta::Converter version 2.150005'
generated_by: 'Module::Build version 0.4218, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@ -26,7 +26,7 @@ name: App-ClusterSSH
provides:
App::ClusterSSH:
file: lib/App/ClusterSSH.pm
version: '4.06'
version: '4.07'
App::ClusterSSH::Base:
file: lib/App/ClusterSSH/Base.pm
version: '0.02'
@ -49,10 +49,13 @@ provides:
file: lib/App/ClusterSSH/L10N.pm
App::ClusterSSH::L10N::en:
file: lib/App/ClusterSSH/L10N/en.pm
App::ClusterSSH::Range:
file: lib/App/ClusterSSH/Range.pm
recommends:
Sort::Naturally: '0'
requires:
Exception::Class: '1.31'
File::Glob: '0'
File::Path: '0'
Getopt::Long: '0'
Locale::Maketext: '0'
@ -67,5 +70,5 @@ resources:
bugtracker: https://github.com/duncs/clusterssh/issues
homepage: http://github.com/duncs/clusterssh/wiki
license: http://dev.perl.org/licenses/
version: '4.06'
x_serialization_backend: 'CPAN::Meta::YAML version 0.016'
version: '4.07'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

View file

@ -1,4 +1,4 @@
# Note: this file was auto-generated by Module::Build::Compat version 0.4216
# Note: this file was auto-generated by Module::Build::Compat version 0.4218
use ExtUtils::MakeMaker;
WriteMakefile
(
@ -7,6 +7,7 @@ WriteMakefile
'PREREQ_PM' => {
'CPAN::Changes' => '0.27',
'Exception::Class' => '1.31',
'File::Glob' => 0,
'File::Path' => 0,
'File::Slurp' => 0,
'File::Temp' => 0,

View file

@ -3,7 +3,7 @@ package App::ClusterSSH;
use 5.008.004;
use warnings;
use strict;
use version; our $VERSION = version->new('4.07_1');
use version; our $VERSION = version->new('4.07');
use Carp qw/cluck :DEFAULT/;