Upate version

This commit is contained in:
Duncan Ferguson 2017-04-13 08:31:40 +01:00
parent 7c9cfb1531
commit 5cd27cb11f
4 changed files with 8 additions and 5 deletions

View file

@ -1,3 +1,6 @@
4.10_02 0000-00-00 Duncan Ferguson <duncan_ferguson@user.sf.net>
** new version marker **
4.10_01 2017-04-12 Duncan Ferguson <duncan_ferguson@user.sf.net> 4.10_01 2017-04-12 Duncan Ferguson <duncan_ferguson@user.sf.net>
- Allow 'include' directives when reading SSH configuration files (Github issue #77) (thanks to Azenet) - Allow 'include' directives when reading SSH configuration files (Github issue #77) (thanks to Azenet)
- Generate README when creating the distribution from cssh man page so www.cpan.org and www.metacpan.org can display documentation - Generate README when creating the distribution from cssh man page so www.cpan.org and www.metacpan.org can display documentation

View file

@ -55,7 +55,7 @@
"provides" : { "provides" : {
"App::ClusterSSH" : { "App::ClusterSSH" : {
"file" : "lib/App/ClusterSSH.pm", "file" : "lib/App/ClusterSSH.pm",
"version" : "4.10_01" "version" : "4.10_02"
}, },
"App::ClusterSSH::Base" : { "App::ClusterSSH::Base" : {
"file" : "lib/App/ClusterSSH/Base.pm", "file" : "lib/App/ClusterSSH/Base.pm",
@ -105,6 +105,6 @@
"http://github.com/duncs/clusterssh" "http://github.com/duncs/clusterssh"
] ]
}, },
"version" : "4.10_01", "version" : "4.10_02",
"x_serialization_backend" : "JSON::PP version 2.27400" "x_serialization_backend" : "JSON::PP version 2.27400"
} }

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.10_01 version: 4.10_02
App::ClusterSSH::Base: App::ClusterSSH::Base:
file: lib/App/ClusterSSH/Base.pm file: lib/App/ClusterSSH/Base.pm
version: '0.02' version: '0.02'
@ -71,5 +71,5 @@ resources:
bugtracker: https://github.com/duncs/clusterssh/issues bugtracker: https://github.com/duncs/clusterssh/issues
homepage: http://github.com/duncs/clusterssh/wiki homepage: http://github.com/duncs/clusterssh/wiki
license: http://dev.perl.org/licenses/ license: http://dev.perl.org/licenses/
version: 4.10_01 version: 4.10_02
x_serialization_backend: 'CPAN::Meta::YAML version 0.016' x_serialization_backend: 'CPAN::Meta::YAML version 0.016'

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.10_01'); use version; our $VERSION = version->new('4.10_02');
use Carp qw/cluck :DEFAULT/; use Carp qw/cluck :DEFAULT/;