summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjimk <jimk@07862939-d7ef-0310-b512-86c215e7314a>2005-09-13 01:42:48 +0000
committerjimk <jimk@07862939-d7ef-0310-b512-86c215e7314a>2005-09-13 01:42:48 +0000
commita02c31b8c53d87fe02bbf6a38222adbf9853dfe1 (patch)
tree39ae84d288589c1d6dd33975044041d8629b1c17
parent6288d9c46522b63de0f39ab3ed433adb6e204888 (diff)
Upped version number to 0.39_09.
-rw-r--r--README8
-rw-r--r--lib/ExtUtils/ModuleMaker.pm4
-rw-r--r--lib/ExtUtils/ModuleMaker/Auxiliary.pm2
-rw-r--r--lib/ExtUtils/ModuleMaker/Defaults.pm2
-rw-r--r--lib/ExtUtils/ModuleMaker/Initializers.pm2
-rw-r--r--lib/ExtUtils/ModuleMaker/Interactive.pm2
-rw-r--r--lib/ExtUtils/ModuleMaker/Licenses/Local.pm2
-rw-r--r--lib/ExtUtils/ModuleMaker/Licenses/Standard.pm2
-rw-r--r--lib/ExtUtils/ModuleMaker/StandardText.pm2
-rw-r--r--lib/ExtUtils/ModuleMaker/Utility.pm2
-rw-r--r--scripts/modulemaker4
11 files changed, 16 insertions, 16 deletions
diff --git a/README b/README
index 286cde9..9a42223 100644
--- a/README
+++ b/README
@@ -1,14 +1,14 @@
ExtUtils::ModuleMaker - Better than h2xs for creating modules
-This document refers to version 0.39_08 of ExtUtils::ModuleMaker.
+This document refers to version 0.39_09 of ExtUtils::ModuleMaker.
his version was released September 12, 2005.
To install this module on your system, place the tarball archive file in a
temporary directory and call the following:
-% gunzip ExtUtils-ModuleMaker-0.39_08.tar.gz
-% tar xf ExtUtils-ModuleMaker-0.39_08.tar
-% cd ExtUtils-ModuleMaker-0.39_08
+% gunzip ExtUtils-ModuleMaker-0.39_09.tar.gz
+% tar xf ExtUtils-ModuleMaker-0.39_09.tar
+% cd ExtUtils-ModuleMaker-0.39_09
% perl Makefile.PL
% make
% make test
diff --git a/lib/ExtUtils/ModuleMaker.pm b/lib/ExtUtils/ModuleMaker.pm
index 0755362..d663080 100644
--- a/lib/ExtUtils/ModuleMaker.pm
+++ b/lib/ExtUtils/ModuleMaker.pm
@@ -3,7 +3,7 @@ use strict;
local $^W = 1;
BEGIN {
use vars qw( $VERSION @ISA );
- $VERSION = '0.39_08';
+ $VERSION = '0.39_09';
use base qw(
ExtUtils::ModuleMaker::Defaults
ExtUtils::ModuleMaker::Initializers
@@ -338,7 +338,7 @@ Inside a Perl program:
=head1 VERSION
-This document references version 0.39_08 of ExtUtils::ModuleMaker, released
+This document references version 0.39_09 of ExtUtils::ModuleMaker, released
to CPAN on September 12, 2005.
=head1 DESCRIPTION
diff --git a/lib/ExtUtils/ModuleMaker/Auxiliary.pm b/lib/ExtUtils/ModuleMaker/Auxiliary.pm
index 6c9047a..54fb7a3 100644
--- a/lib/ExtUtils/ModuleMaker/Auxiliary.pm
+++ b/lib/ExtUtils/ModuleMaker/Auxiliary.pm
@@ -4,7 +4,7 @@ package ExtUtils::ModuleMaker::Auxiliary;
use strict;
local $^W = 1;
use vars qw( $VERSION @ISA @EXPORT_OK );
-$VERSION = '0.39_08';
+$VERSION = '0.39_09';
require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(
diff --git a/lib/ExtUtils/ModuleMaker/Defaults.pm b/lib/ExtUtils/ModuleMaker/Defaults.pm
index 2f2e5f7..aee6843 100644
--- a/lib/ExtUtils/ModuleMaker/Defaults.pm
+++ b/lib/ExtUtils/ModuleMaker/Defaults.pm
@@ -2,7 +2,7 @@ package ExtUtils::ModuleMaker::Defaults;
# as of 09-12-2005
use strict;
use vars qw( $VERSION );
-$VERSION = '0.39_08';
+$VERSION = '0.39_09';
my $usage = <<ENDOFUSAGE;
diff --git a/lib/ExtUtils/ModuleMaker/Initializers.pm b/lib/ExtUtils/ModuleMaker/Initializers.pm
index 9618e5e..6069ae7 100644
--- a/lib/ExtUtils/ModuleMaker/Initializers.pm
+++ b/lib/ExtUtils/ModuleMaker/Initializers.pm
@@ -3,7 +3,7 @@ package ExtUtils::ModuleMaker::Initializers;
use strict;
local $^W = 1;
use vars qw( $VERSION );
-$VERSION = '0.39_08';
+$VERSION = '0.39_09';
use ExtUtils::ModuleMaker::Licenses::Standard qw(
Get_Standard_License
Verify_Standard_License
diff --git a/lib/ExtUtils/ModuleMaker/Interactive.pm b/lib/ExtUtils/ModuleMaker/Interactive.pm
index e4a576b..070f8a4 100644
--- a/lib/ExtUtils/ModuleMaker/Interactive.pm
+++ b/lib/ExtUtils/ModuleMaker/Interactive.pm
@@ -5,7 +5,7 @@ local $^W = 1;
BEGIN {
use base qw( ExtUtils::ModuleMaker );
use vars qw ( $VERSION );
- $VERSION = '0.39_08';
+ $VERSION = '0.39_09';
}
use Carp;
use Data::Dumper;
diff --git a/lib/ExtUtils/ModuleMaker/Licenses/Local.pm b/lib/ExtUtils/ModuleMaker/Licenses/Local.pm
index cabe1dc..18077d7 100644
--- a/lib/ExtUtils/ModuleMaker/Licenses/Local.pm
+++ b/lib/ExtUtils/ModuleMaker/Licenses/Local.pm
@@ -5,7 +5,7 @@ local $^W = 1;
BEGIN {
use base qw(Exporter);
use vars qw( @EXPORT_OK $VERSION );
- $VERSION = '0.39_08';
+ $VERSION = '0.39_09';
@EXPORT_OK = qw(Get_Local_License Verify_Local_License);
}
diff --git a/lib/ExtUtils/ModuleMaker/Licenses/Standard.pm b/lib/ExtUtils/ModuleMaker/Licenses/Standard.pm
index 43f4f0d..ee7c74d 100644
--- a/lib/ExtUtils/ModuleMaker/Licenses/Standard.pm
+++ b/lib/ExtUtils/ModuleMaker/Licenses/Standard.pm
@@ -5,7 +5,7 @@ local $^W = 1;
BEGIN {
use base qw(Exporter);
use vars qw( @EXPORT_OK $VERSION );
- $VERSION = '0.39_08';
+ $VERSION = '0.39_09';
@EXPORT_OK = qw(Get_Standard_License Verify_Standard_License);
# $VERSION : taken from lib/ExtUtils/ModuleMaker.pm
}
diff --git a/lib/ExtUtils/ModuleMaker/StandardText.pm b/lib/ExtUtils/ModuleMaker/StandardText.pm
index e61f6c2..e5113b4 100644
--- a/lib/ExtUtils/ModuleMaker/StandardText.pm
+++ b/lib/ExtUtils/ModuleMaker/StandardText.pm
@@ -3,7 +3,7 @@ package ExtUtils::ModuleMaker::StandardText;
use strict;
local $^W = 1;
use vars qw ( $VERSION );
-$VERSION = '0.39_08';
+$VERSION = '0.39_09';
use ExtUtils::ModuleMaker::Licenses::Standard qw(
Get_Standard_License
Verify_Standard_License
diff --git a/lib/ExtUtils/ModuleMaker/Utility.pm b/lib/ExtUtils/ModuleMaker/Utility.pm
index bdfd4ca..6406110 100644
--- a/lib/ExtUtils/ModuleMaker/Utility.pm
+++ b/lib/ExtUtils/ModuleMaker/Utility.pm
@@ -4,7 +4,7 @@ use strict;
local $^W = 1;
use base qw(Exporter);
use vars qw( @EXPORT_OK $VERSION );
-$VERSION = '0.39_08';
+$VERSION = '0.39_09';
@EXPORT_OK = qw(
_get_home_directory
_preexists_mmkr_directory
diff --git a/scripts/modulemaker b/scripts/modulemaker
index 509bfb4..8735ca4 100644
--- a/scripts/modulemaker
+++ b/scripts/modulemaker
@@ -11,7 +11,7 @@ use Carp;
use vars qw ( $VERSION );
use Data::Dumper;
-$VERSION = '0.39_08';
+$VERSION = '0.39_09';
##### Index of Variables (Aug 18 2005) #####
# %opts
@@ -119,7 +119,7 @@ modulemaker - interactive interface to ExtUtils::ModuleMaker
=head1 VERSION
-This document references version 0.39_08 of modulemaker, released
+This document references version 0.39_09 of modulemaker, released
to CPAN on September 12, 2005.
=head1 USAGE::Simple