diff --git a/Changes b/Changes index f767b1c..ffbdbb3 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,4 @@ -4.10 0000-00-00 Duncan Ferguson +4.10_01 2017-04-12 Duncan Ferguson - 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 diff --git a/META.json b/META.json index a87c456..1a84322 100644 --- a/META.json +++ b/META.json @@ -55,7 +55,7 @@ "provides" : { "App::ClusterSSH" : { "file" : "lib/App/ClusterSSH.pm", - "version" : "4.10" + "version" : "4.10_01" }, "App::ClusterSSH::Base" : { "file" : "lib/App/ClusterSSH/Base.pm", @@ -91,7 +91,7 @@ "file" : "lib/App/ClusterSSH/Range.pm" } }, - "release_status" : "stable", + "release_status" : "testing", "resources" : { "bugtracker" : { "web" : "https://github.com/duncs/clusterssh/issues" @@ -105,6 +105,6 @@ "http://github.com/duncs/clusterssh" ] }, - "version" : "4.10", + "version" : "4.10_01", "x_serialization_backend" : "JSON::PP version 2.27400" } diff --git a/META.yml b/META.yml index 5908485..30ce02e 100644 --- a/META.yml +++ b/META.yml @@ -26,7 +26,7 @@ name: App-ClusterSSH provides: App::ClusterSSH: file: lib/App/ClusterSSH.pm - version: '4.10' + version: 4.10_01 App::ClusterSSH::Base: file: lib/App/ClusterSSH/Base.pm version: '0.02' @@ -71,5 +71,5 @@ resources: bugtracker: https://github.com/duncs/clusterssh/issues homepage: http://github.com/duncs/clusterssh/wiki license: http://dev.perl.org/licenses/ -version: '4.10' +version: 4.10_01 x_serialization_backend: 'CPAN::Meta::YAML version 0.016' diff --git a/lib/App/ClusterSSH.pm b/lib/App/ClusterSSH.pm index 429625e..f6f84e3 100644 --- a/lib/App/ClusterSSH.pm +++ b/lib/App/ClusterSSH.pm @@ -3,7 +3,7 @@ package App::ClusterSSH; use 5.008.004; use warnings; use strict; -use version; our $VERSION = version->new('4.10'); +use version; our $VERSION = version->new('4.10_01'); use Carp qw/cluck :DEFAULT/;