Minor release 4.13.1 for perltidy test fix

This commit is contained in:
Duncan Ferguson 2018-03-05 10:09:38 +00:00
parent 651c756f55
commit 5b827fd163
6 changed files with 12 additions and 9 deletions

View file

@ -1,3 +1,6 @@
4.13.1 2018-03-05 Duncan Ferguson <duncan_ferguson@user.sf.net>
- Minor update to fix failing tests due to 3rd party perltidy changes
4.13 2017-12-27 Duncan Ferguson <duncan_ferguson@user.sf.net>
- Ensure ssh_args is keep unset if it is emptied in the configuration file
- Obey configured console position (Debian bug 758215) (Github issue #100)

View file

@ -20,7 +20,7 @@
"File::Slurp" : "0",
"File::Temp" : "0",
"File::Which" : "0",
"Perl::Tidy" : "20171214",
"Perl::Tidy" : "20180220",
"Readonly" : "0",
"Test::Differences" : "0",
"Test::DistManifest" : "0",
@ -56,7 +56,7 @@
"provides" : {
"App::ClusterSSH" : {
"file" : "lib/App/ClusterSSH.pm",
"version" : "4.13"
"version" : "v4.13.1"
},
"App::ClusterSSH::Base" : {
"file" : "lib/App/ClusterSSH/Base.pm",
@ -107,6 +107,6 @@
],
"x_coverage" : "https://coveralls.io/github/duncs/clusterssh"
},
"version" : "4.13",
"version" : "v4.13.1",
"x_serialization_backend" : "JSON::PP version 2.94"
}

View file

@ -7,7 +7,7 @@ build_requires:
File::Slurp: '0'
File::Temp: '0'
File::Which: '0'
Perl::Tidy: '20171214'
Perl::Tidy: '20180220'
Readonly: '0'
Test::Differences: '0'
Test::DistManifest: '0'
@ -27,7 +27,7 @@ name: App-ClusterSSH
provides:
App::ClusterSSH:
file: lib/App/ClusterSSH.pm
version: '4.13'
version: v4.13.1
App::ClusterSSH::Base:
file: lib/App/ClusterSSH/Base.pm
version: '0.02'
@ -73,5 +73,5 @@ resources:
bugtracker: https://github.com/duncs/clusterssh/issues
homepage: http://github.com/duncs/clusterssh/wiki
license: http://dev.perl.org/licenses/
version: '4.13'
version: v4.13.1
x_serialization_backend: 'CPAN::Meta::YAML version 0.016'

View file

@ -14,7 +14,7 @@ WriteMakefile
'File::Which' => 0,
'Getopt::Long' => 0,
'Locale::Maketext' => 0,
'Perl::Tidy' => 20171214,
'Perl::Tidy' => 20180220,
'Readonly' => 0,
'Test::Differences' => 0,
'Test::DistManifest' => 0,

2
README
View file

@ -2,7 +2,7 @@ NAME
cssh - Cluster administration tool
VERSION
This documentation is for version: 4.13
This documentation is for version: 4.13.1
SYNOPSIS
cssh [-a '<command>'] [-K <seconds>] [-q] [-c '<filename>'] [-x <cols>]

View file

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