Update MANIFEST file and release prep

Ensure all necessary files are included in release tarball
This commit is contained in:
Duncan Ferguson 2010-06-19 20:10:31 +01:00
parent c3b04b22ec
commit d77a265b85
6 changed files with 38 additions and 5 deletions

3
.gitignore vendored
View file

@ -2,6 +2,7 @@ blib/
_build/
Build
cover_db/
MANIFEST.bak
MYMETA.yml
*.swp
*.tar.gz
MYMETA.yml

View file

@ -1,3 +1,7 @@
2010-06-20 Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.00_04
* Update MANIFEST file to ensure all correct files are included in release
2010-06-20 Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.00_03
* Fix silly type in code/tests

View file

@ -6,11 +6,21 @@ bin/ctel
Build.PL
Changes
lib/App/ClusterSSH.pm
lib/App/ClusterSSH/Base.pm
lib/App/ClusterSSH/Host.pm
lib/App/ClusterSSH/L10N.pm
lib/App/ClusterSSH/L10N/en.pm
MANIFEST
MANIFEST.SKIP
META.yml
NOTES
README
t/00-load.t
t/01l10n.t
t/02base.t
t/10host.t
t/10host_ssh_config
t/boilerplate.t
THANKS
t/pod-coverage.t
t/pod.t
THANKS

View file

@ -1 +1,9 @@
^App-ClusterSSH-.*
^blib/
^_build/
^Build$
^.git/
^.gitignore
^MANIFEST\.bak$
^MYMETA.yml$
.*\.swp$

View file

@ -15,7 +15,17 @@ name: App-ClusterSSH
provides:
App::ClusterSSH:
file: lib/App/ClusterSSH.pm
version: 4.00_03
version: 4.00_04
App::ClusterSSH::Base:
file: lib/App/ClusterSSH/Base.pm
version: 0.01
App::ClusterSSH::Host:
file: lib/App/ClusterSSH/Host.pm
version: v1.0.0
App::ClusterSSH::L10N:
file: lib/App/ClusterSSH/L10N.pm
App::ClusterSSH::L10N::en:
file: lib/App/ClusterSSH/L10N/en.pm
requires:
Locale::Maketext: 0
Tk: 800.022
@ -28,4 +38,4 @@ resources:
repository:
- http://clusterssh.git.sourceforge.net/
- http://github.com/duncs/clusterssh
version: 4.00_03
version: 4.00_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.00_03');
use version; our $VERSION = version->new('4.00_04');
use Carp;