Version 4.03_04 release changes

This commit is contained in:
Duncan Ferguson 2014-12-12 17:31:14 +00:00
parent e528584eb0
commit 457c3e8e1c
4 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
4.04_04 ????-??-?? Duncan Ferguson <duncan_ferguson@user.sf.net>
4.04_04 2014-12-12 Duncan Ferguson <duncan_ferguson@user.sf.net>
- Do not use system perl but whatever is found in PATH (to stop breaking perlbrew based builds)
- Warn when the configured terminal isn't installed/found
- Don't show 'Opening to:' when no servers are given

View file

@ -48,7 +48,7 @@
"provides" : {
"App::ClusterSSH" : {
"file" : "lib/App/ClusterSSH.pm",
"version" : "4.03_03"
"version" : "4.03_04"
},
"App::ClusterSSH::Base" : {
"file" : "lib/App/ClusterSSH/Base.pm",
@ -95,5 +95,5 @@
"http://github.com/duncs/clusterssh"
]
},
"version" : "4.03_03"
"version" : "4.03_04"
}

View file

@ -26,7 +26,7 @@ name: App-ClusterSSH
provides:
App::ClusterSSH:
file: lib/App/ClusterSSH.pm
version: 4.03_03
version: 4.03_04
App::ClusterSSH::Base:
file: lib/App/ClusterSSH/Base.pm
version: 0.02
@ -63,4 +63,4 @@ resources:
bugtracker: http://sourceforge.net/tracker/?group_id=89139
homepage: http://clusterssh.sourceforge.net/
license: http://dev.perl.org/licenses/
version: 4.03_03
version: 4.03_04

View file

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