mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-22 01:12:24 +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)
|
||||
- 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)
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
"prereqs" : {
|
||||
"build" : {
|
||||
"requires" : {
|
||||
"CPAN::Changes" : "0.27",
|
||||
"File::Temp" : "0",
|
||||
"File::Which" : "0",
|
||||
"Readonly" : "0",
|
||||
|
@ -45,7 +46,7 @@
|
|||
"provides" : {
|
||||
"App::ClusterSSH" : {
|
||||
"file" : "lib/App/ClusterSSH.pm",
|
||||
"version" : "4.02_03"
|
||||
"version" : "4.02_04"
|
||||
},
|
||||
"App::ClusterSSH::Base" : {
|
||||
"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:
|
||||
- 'Duncan Ferguson <duncan_j_ferguson@yahoo.co.uk>'
|
||||
build_requires:
|
||||
CPAN::Changes: 0.27
|
||||
File::Temp: 0
|
||||
File::Which: 0
|
||||
Readonly: 0
|
||||
|
@ -23,7 +24,7 @@ name: App-ClusterSSH
|
|||
provides:
|
||||
App::ClusterSSH:
|
||||
file: lib/App/ClusterSSH.pm
|
||||
version: 4.02_03
|
||||
version: 4.02_04
|
||||
App::ClusterSSH::Base:
|
||||
file: lib/App/ClusterSSH/Base.pm
|
||||
version: 0.02
|
||||
|
|
|
@ -5,6 +5,7 @@ WriteMakefile
|
|||
'NAME' => 'App::ClusterSSH',
|
||||
'VERSION_FROM' => 'lib/App/ClusterSSH.pm',
|
||||
'PREREQ_PM' => {
|
||||
'CPAN::Changes' => '0.27',
|
||||
'Exception::Class' => '1.31',
|
||||
'File::Temp' => 0,
|
||||
'File::Which' => 0,
|
||||
|
|
|
@ -3,7 +3,7 @@ package App::ClusterSSH;
|
|||
use 5.008.004;
|
||||
use warnings;
|
||||
use strict;
|
||||
use version; our $VERSION = version->new('4.02_03');
|
||||
use version; our $VERSION = version->new('4.02_04');
|
||||
|
||||
use Carp;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue