Release 4.04

This commit is contained in:
Duncan Ferguson 2015-11-03 21:18:13 +00:00
parent 2f26815445
commit 4157d9f3e2
4 changed files with 14 additions and 9 deletions

View file

@ -1,4 +1,4 @@
4.03_07 0000-00-00 Duncan Ferguson <duncan_ferguson@user.sf.net> 4.04 2015-11-03 Duncan Ferguson <duncan_ferguson@user.sf.net>
- Include bash completion script in distribution (Github issue #29) - Include bash completion script in distribution (Github issue #29)
- Allow re-adding closed session (Github issue #27 - thanks to Andrew Stevenson) - Allow re-adding closed session (Github issue #27 - thanks to Andrew Stevenson)
- Allow sorting windows in natural order (Github issue #28 - thanks to Andrew Stevenson) - Allow sorting windows in natural order (Github issue #28 - thanks to Andrew Stevenson)

View file

@ -35,6 +35,9 @@
} }
}, },
"runtime" : { "runtime" : {
"recommends" : {
"Sort::Naturally" : "0"
},
"requires" : { "requires" : {
"Exception::Class" : "1.31", "Exception::Class" : "1.31",
"Getopt::Long" : "0", "Getopt::Long" : "0",
@ -49,7 +52,7 @@
"provides" : { "provides" : {
"App::ClusterSSH" : { "App::ClusterSSH" : {
"file" : "lib/App/ClusterSSH.pm", "file" : "lib/App/ClusterSSH.pm",
"version" : "4.03_07" "version" : "4.04"
}, },
"App::ClusterSSH::Base" : { "App::ClusterSSH::Base" : {
"file" : "lib/App/ClusterSSH/Base.pm", "file" : "lib/App/ClusterSSH/Base.pm",
@ -82,12 +85,12 @@
"file" : "lib/App/ClusterSSH/L10N/en.pm" "file" : "lib/App/ClusterSSH/L10N/en.pm"
} }
}, },
"release_status" : "testing", "release_status" : "stable",
"resources" : { "resources" : {
"bugtracker" : { "bugtracker" : {
"web" : "https://github.com/duncs/clusterssh/issues" "web" : "https://github.com/duncs/clusterssh/issues"
}, },
"homepage" : "http://clusterssh.sourceforge.net/", "homepage" : "http://github.com/duncs/clusterssh/wiki",
"license" : [ "license" : [
"http://dev.perl.org/licenses/" "http://dev.perl.org/licenses/"
], ],
@ -96,5 +99,5 @@
"http://github.com/duncs/clusterssh" "http://github.com/duncs/clusterssh"
] ]
}, },
"version" : "4.03_07" "version" : "4.04"
} }

View file

@ -26,7 +26,7 @@ name: App-ClusterSSH
provides: provides:
App::ClusterSSH: App::ClusterSSH:
file: lib/App/ClusterSSH.pm file: lib/App/ClusterSSH.pm
version: 4.03_07 version: '4.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'
@ -49,6 +49,8 @@ provides:
file: lib/App/ClusterSSH/L10N.pm file: lib/App/ClusterSSH/L10N.pm
App::ClusterSSH::L10N::en: App::ClusterSSH::L10N::en:
file: lib/App/ClusterSSH/L10N/en.pm file: lib/App/ClusterSSH/L10N/en.pm
recommends:
Sort::Naturally: '0'
requires: requires:
Exception::Class: '1.31' Exception::Class: '1.31'
Getopt::Long: '0' Getopt::Long: '0'
@ -62,6 +64,6 @@ resources:
- http://clusterssh.git.sourceforge.net/ - http://clusterssh.git.sourceforge.net/
- http://github.com/duncs/clusterssh - http://github.com/duncs/clusterssh
bugtracker: https://github.com/duncs/clusterssh/issues bugtracker: https://github.com/duncs/clusterssh/issues
homepage: http://clusterssh.sourceforge.net/ homepage: http://github.com/duncs/clusterssh/wiki
license: http://dev.perl.org/licenses/ license: http://dev.perl.org/licenses/
version: 4.03_07 version: '4.04'

View file

@ -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.03_07'); use version; our $VERSION = version->new('4.04');
use Carp qw/cluck :DEFAULT/; use Carp qw/cluck :DEFAULT/;