mirror of
https://github.com/duncs/clusterssh.git
synced 2025-07-03 01:43:25 +00:00
Update MANIFEST file and release prep
Ensure all necessary files are included in release tarball
This commit is contained in:
parent
c3b04b22ec
commit
d77a265b85
6 changed files with 38 additions and 5 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -2,6 +2,7 @@ blib/
|
||||||
_build/
|
_build/
|
||||||
Build
|
Build
|
||||||
cover_db/
|
cover_db/
|
||||||
|
MANIFEST.bak
|
||||||
|
MYMETA.yml
|
||||||
*.swp
|
*.swp
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
MYMETA.yml
|
|
||||||
|
|
4
Changes
4
Changes
|
@ -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
|
2010-06-20 Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.00_03
|
||||||
|
|
||||||
* Fix silly type in code/tests
|
* Fix silly type in code/tests
|
||||||
|
|
12
MANIFEST
12
MANIFEST
|
@ -6,11 +6,21 @@ bin/ctel
|
||||||
Build.PL
|
Build.PL
|
||||||
Changes
|
Changes
|
||||||
lib/App/ClusterSSH.pm
|
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
|
||||||
|
MANIFEST.SKIP
|
||||||
META.yml
|
META.yml
|
||||||
|
NOTES
|
||||||
README
|
README
|
||||||
t/00-load.t
|
t/00-load.t
|
||||||
|
t/01l10n.t
|
||||||
|
t/02base.t
|
||||||
|
t/10host.t
|
||||||
|
t/10host_ssh_config
|
||||||
t/boilerplate.t
|
t/boilerplate.t
|
||||||
THANKS
|
|
||||||
t/pod-coverage.t
|
t/pod-coverage.t
|
||||||
t/pod.t
|
t/pod.t
|
||||||
|
THANKS
|
||||||
|
|
|
@ -1 +1,9 @@
|
||||||
|
^App-ClusterSSH-.*
|
||||||
|
^blib/
|
||||||
|
^_build/
|
||||||
|
^Build$
|
||||||
|
^.git/
|
||||||
|
^.gitignore
|
||||||
|
^MANIFEST\.bak$
|
||||||
^MYMETA.yml$
|
^MYMETA.yml$
|
||||||
|
.*\.swp$
|
||||||
|
|
14
META.yml
14
META.yml
|
@ -15,7 +15,17 @@ name: App-ClusterSSH
|
||||||
provides:
|
provides:
|
||||||
App::ClusterSSH:
|
App::ClusterSSH:
|
||||||
file: lib/App/ClusterSSH.pm
|
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:
|
requires:
|
||||||
Locale::Maketext: 0
|
Locale::Maketext: 0
|
||||||
Tk: 800.022
|
Tk: 800.022
|
||||||
|
@ -28,4 +38,4 @@ resources:
|
||||||
repository:
|
repository:
|
||||||
- http://clusterssh.git.sourceforge.net/
|
- http://clusterssh.git.sourceforge.net/
|
||||||
- http://github.com/duncs/clusterssh
|
- http://github.com/duncs/clusterssh
|
||||||
version: 4.00_03
|
version: 4.00_04
|
||||||
|
|
|
@ -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.00_03');
|
use version; our $VERSION = version->new('4.00_04');
|
||||||
|
|
||||||
use Carp;
|
use Carp;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue