Start prep for 4.01_00 release

This commit is contained in:
Duncan Ferguson 2011-12-02 23:29:36 +00:00
parent 96ceadd075
commit 5d59372fbf
3 changed files with 16 additions and 2 deletions

View file

@ -1,5 +1,9 @@
????-??-?? Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.01_00
* Start switching code to use Exception::Class
* Moved config file from $HOME/.csshrc file to $HOME/.clusterssh directory
* Rework config handling into a module
* Rework cluster handling into a module
* Added 'autoclose' functionality - see docs
2011-07-28 Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.00_11
* Fix '-l <username>' option (SF bug 3380675)

View file

@ -3,6 +3,9 @@ abstract: 'A container for functions of the ClusterSSH programs'
author:
- 'Duncan Ferguson <duncan_j_ferguson@yahoo.co.uk>'
build_requires:
File::Temp: 0
File::Which: 0
Readonly: 0
Test::Pod: 0
Test::Pod::Coverage: 0
Test::Trap: 0
@ -17,7 +20,7 @@ name: App-ClusterSSH
provides:
App::ClusterSSH:
file: lib/App/ClusterSSH.pm
version: 4.00_11
version: 4.01_00
App::ClusterSSH::Base:
file: lib/App/ClusterSSH/Base.pm
version: 0.02
@ -29,8 +32,10 @@ provides:
App::ClusterSSH::L10N::en:
file: lib/App/ClusterSSH/L10N/en.pm
requires:
Exception::Class: 1.31
Locale::Maketext: 0
Tk: 800.022
Try::Tiny: 0
X11::Protocol: 0.56
version: 0
resources:
@ -40,4 +45,4 @@ resources:
repository:
- http://clusterssh.git.sourceforge.net/
- http://github.com/duncs/clusterssh
version: 4.00_11
version: 4.01_00

View file

@ -5,11 +5,16 @@ WriteMakefile
'NAME' => 'App::ClusterSSH',
'VERSION_FROM' => 'lib/App/ClusterSSH.pm',
'PREREQ_PM' => {
'Exception::Class' => '1.31',
'File::Temp' => 0,
'File::Which' => 0,
'Locale::Maketext' => 0,
'Readonly' => 0,
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
'Test::Trap' => 0,
'Tk' => '800.022',
'Try::Tiny' => 0,
'X11::Protocol' => '0.56',
'version' => '0'
},