mirror of
https://github.com/duncs/clusterssh.git
synced 2025-07-03 18:03:23 +00:00
Release 4.02_04
This commit is contained in:
parent
155b861e08
commit
61a04ac3d2
5 changed files with 7 additions and 4 deletions
2
Changes
2
Changes
|
@ -1,4 +1,4 @@
|
||||||
4.02_04 0000-00-00 Duncan Ferguson <duncan_ferguson@user.sf.net>
|
4.02_04 2014-05-17 Duncan Ferguson <duncan_ferguson@user.sf.net>
|
||||||
- Amend 'Changes' file format to match CPAN specs (see CPAN::Changes)
|
- Amend 'Changes' file format to match CPAN specs (see CPAN::Changes)
|
||||||
- Correct autoclose short option to what is actually used (Github issue 4) (thanks to Simon Fraser)
|
- Correct autoclose short option to what is actually used (Github issue 4) (thanks to Simon Fraser)
|
||||||
- Fix 'use_all_a_records' option (Github issue: 5) (thanks to Simon Fraser)
|
- Fix 'use_all_a_records' option (Github issue: 5) (thanks to Simon Fraser)
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
"prereqs" : {
|
"prereqs" : {
|
||||||
"build" : {
|
"build" : {
|
||||||
"requires" : {
|
"requires" : {
|
||||||
|
"CPAN::Changes" : "0.27",
|
||||||
"File::Temp" : "0",
|
"File::Temp" : "0",
|
||||||
"File::Which" : "0",
|
"File::Which" : "0",
|
||||||
"Readonly" : "0",
|
"Readonly" : "0",
|
||||||
|
@ -45,7 +46,7 @@
|
||||||
"provides" : {
|
"provides" : {
|
||||||
"App::ClusterSSH" : {
|
"App::ClusterSSH" : {
|
||||||
"file" : "lib/App/ClusterSSH.pm",
|
"file" : "lib/App/ClusterSSH.pm",
|
||||||
"version" : "4.02_03"
|
"version" : "4.02_04"
|
||||||
},
|
},
|
||||||
"App::ClusterSSH::Base" : {
|
"App::ClusterSSH::Base" : {
|
||||||
"file" : "lib/App/ClusterSSH/Base.pm",
|
"file" : "lib/App/ClusterSSH/Base.pm",
|
||||||
|
|
3
META.yml
3
META.yml
|
@ -3,6 +3,7 @@ abstract: 'A container for functions of the ClusterSSH programs'
|
||||||
author:
|
author:
|
||||||
- 'Duncan Ferguson <duncan_j_ferguson@yahoo.co.uk>'
|
- 'Duncan Ferguson <duncan_j_ferguson@yahoo.co.uk>'
|
||||||
build_requires:
|
build_requires:
|
||||||
|
CPAN::Changes: 0.27
|
||||||
File::Temp: 0
|
File::Temp: 0
|
||||||
File::Which: 0
|
File::Which: 0
|
||||||
Readonly: 0
|
Readonly: 0
|
||||||
|
@ -23,7 +24,7 @@ name: App-ClusterSSH
|
||||||
provides:
|
provides:
|
||||||
App::ClusterSSH:
|
App::ClusterSSH:
|
||||||
file: lib/App/ClusterSSH.pm
|
file: lib/App/ClusterSSH.pm
|
||||||
version: 4.02_03
|
version: 4.02_04
|
||||||
App::ClusterSSH::Base:
|
App::ClusterSSH::Base:
|
||||||
file: lib/App/ClusterSSH/Base.pm
|
file: lib/App/ClusterSSH/Base.pm
|
||||||
version: 0.02
|
version: 0.02
|
||||||
|
|
|
@ -5,6 +5,7 @@ WriteMakefile
|
||||||
'NAME' => 'App::ClusterSSH',
|
'NAME' => 'App::ClusterSSH',
|
||||||
'VERSION_FROM' => 'lib/App/ClusterSSH.pm',
|
'VERSION_FROM' => 'lib/App/ClusterSSH.pm',
|
||||||
'PREREQ_PM' => {
|
'PREREQ_PM' => {
|
||||||
|
'CPAN::Changes' => '0.27',
|
||||||
'Exception::Class' => '1.31',
|
'Exception::Class' => '1.31',
|
||||||
'File::Temp' => 0,
|
'File::Temp' => 0,
|
||||||
'File::Which' => 0,
|
'File::Which' => 0,
|
||||||
|
|
|
@ -3,7 +3,7 @@ package App::ClusterSSH;
|
||||||
use 5.008.004;
|
use 5.008.004;
|
||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
use version; our $VERSION = version->new('4.02_03');
|
use version; our $VERSION = version->new('4.02_04');
|
||||||
|
|
||||||
use Carp;
|
use Carp;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue