Release 4.0.6

This commit is contained in:
Duncan Ferguson 2016-03-26 08:50:48 +00:00
parent e5622cda99
commit 754a7137b6
4 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
4.05_01 0000-00-00 Duncan Ferguson <duncan_ferguson@user.sf.net>
4.06 2016-03-26 Duncan Ferguson <duncan_ferguson@user.sf.net>
- Failure to find the terminal binary should not be fatal
- Fix processing of '--extra_tag_file' and its configuration item (Github issue #51)
- Add bash shell expansion on host names containing a '{' character (Github issue #53)

View file

@ -53,7 +53,7 @@
"provides" : {
"App::ClusterSSH" : {
"file" : "lib/App/ClusterSSH.pm",
"version" : "4.05_01"
"version" : "4.06"
},
"App::ClusterSSH::Base" : {
"file" : "lib/App/ClusterSSH/Base.pm",
@ -86,7 +86,7 @@
"file" : "lib/App/ClusterSSH/L10N/en.pm"
}
},
"release_status" : "testing",
"release_status" : "stable",
"resources" : {
"bugtracker" : {
"web" : "https://github.com/duncs/clusterssh/issues"
@ -100,6 +100,6 @@
"http://github.com/duncs/clusterssh"
]
},
"version" : "4.05_01",
"version" : "4.06",
"x_serialization_backend" : "JSON::PP version 2.27203"
}

View file

@ -26,7 +26,7 @@ name: App-ClusterSSH
provides:
App::ClusterSSH:
file: lib/App/ClusterSSH.pm
version: 4.05_01
version: '4.06'
App::ClusterSSH::Base:
file: lib/App/ClusterSSH/Base.pm
version: '0.02'
@ -67,5 +67,5 @@ resources:
bugtracker: https://github.com/duncs/clusterssh/issues
homepage: http://github.com/duncs/clusterssh/wiki
license: http://dev.perl.org/licenses/
version: 4.05_01
version: '4.06'
x_serialization_backend: 'CPAN::Meta::YAML version 0.016'

View file

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