mirror of
https://github.com/duncs/clusterssh.git
synced 2025-06-30 16:53:31 +00:00
Minor release 4.13.1 for perltidy test fix
This commit is contained in:
parent
651c756f55
commit
5b827fd163
6 changed files with 12 additions and 9 deletions
3
Changes
3
Changes
|
@ -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)
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
|
|
6
META.yml
6
META.yml
|
@ -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'
|
||||
|
|
|
@ -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
2
README
|
@ -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>]
|
||||
|
|
|
@ -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/;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue