[libpdl-linearalgebra-perl] 06/11: Update VERSION to 0.07 for CPAN release

Dima Kogan dima at secretsauce.net
Thu Nov 28 20:21:56 UTC 2013


This is an automated email from the git hooks/post-receive script.

dkogan-guest pushed a commit to branch chm
in repository libpdl-linearalgebra-perl.

commit 1a4a88d50ae0f5ea3c0bc46f2217fddc1cfc897c
Author: Chris Marshall <devel.chm.01 at gmail.com>
Date:   Thu Nov 28 07:23:01 2013 -0500

    Update VERSION to 0.07 for CPAN release
---
 Changes                 | 5 +++++
 Complex/Makefile.PL     | 2 +-
 Complex/Makefile.PL.pkg | 2 +-
 Complex/complex.pd      | 3 ++-
 LinearAlgebra.pm        | 2 +-
 Makefile.PL             | 2 +-
 Real/Makefile.PL        | 2 +-
 Real/Makefile.PL.pkg    | 2 +-
 Real/real.pd            | 2 +-
 Special/Makefile.PL     | 2 +-
 Special/Special.pm      | 2 +-
 Trans/Makefile.PL       | 2 +-
 Trans/Makefile.PL.pkg   | 2 +-
 Trans/trans.pd          | 3 ++-
 14 files changed, 20 insertions(+), 13 deletions(-)

diff --git a/Changes b/Changes
index 8b187d7..dc173b1 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Perl extension PDL::LinearAlgebra
 
+0.07  Wed Nov 27 17:09:40 EST 2013
+
+  * Official release with 1st PDL-2.007 support
+
+
 0.06_02  Wed Nov 27 14:19:17 EST 2013
 
   * fix CPAN dependency info so PDL is used for config
diff --git a/Complex/Makefile.PL b/Complex/Makefile.PL
index 4053292..eece515 100755
--- a/Complex/Makefile.PL
+++ b/Complex/Makefile.PL
@@ -16,7 +16,7 @@ $hash{LIBS}[0] .= $^O =~ /MSWin/ ? '' : '-L/usr/lib/atlas -llapack -lblas -latla
 $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib  comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib  netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib  version.lib odbc32.lib odbccp32.lib msvcrt.lib  ../lapack/libacml.lib "C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\lib\msvcrt.lib" ' if $^O =~ /MSWin/;
 WriteMakefile(
 	%hash,
-	'VERSION' => '0.06_02',
+	'VERSION' => '0.07',
 );
 
 # Add genpp rule
diff --git a/Complex/Makefile.PL.pkg b/Complex/Makefile.PL.pkg
index 87b72af..3259fc5 100755
--- a/Complex/Makefile.PL.pkg
+++ b/Complex/Makefile.PL.pkg
@@ -15,7 +15,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 WriteMakefile(
 	%hash,
 	'VERSION_FROM' => "",
-	'VERSION' => '0.06_02',
+	'VERSION' => '0.07',
 );
 
 # Add genpp rule
diff --git a/Complex/complex.pd b/Complex/complex.pd
index f1290c7..e21c08a 100644
--- a/Complex/complex.pd
+++ b/Complex/complex.pd
@@ -2,7 +2,7 @@
 
 
 do('../Config');
-our $VERSION = '0.06_02';
+our $VERSION = '0.07';
 pp_setversion(qq{'$VERSION'});
 $VERSION = eval $VERSION;
 
@@ -115,6 +115,7 @@ use PDL::LinearAlgebra::Real;
 
 
 
+
 =head1 NAME
 
 PDL::LinearAlgebra::Complex - PDL interface to the lapack linear algebra programming library (complex number)
diff --git a/LinearAlgebra.pm b/LinearAlgebra.pm
index b769a4f..78712bc 100644
--- a/LinearAlgebra.pm
+++ b/LinearAlgebra.pm
@@ -20,7 +20,7 @@ use constant{
 
 use strict;
 
-our $VERSION = '0.06_02';
+our $VERSION = '0.07';
 $VERSION = eval $VERSION;
 
 @PDL::LinearAlgebra::ISA = qw/PDL::Exporter/;
diff --git a/Makefile.PL b/Makefile.PL
index 94841f6..9e191d8 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -2,7 +2,7 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
         'NAME' => 'PDL::LinearAlgebra',
-        'VERSION' => '0.06_02',
+        'VERSION' => '0.07',
         'CONFIGURE_REQUIRES' =>  { "PDL" => 0, },
         'BUILD_REQUIRES' =>  { "PDL" => 0, },
 	'PREREQ_PM' => { "PDL" => 0, },
diff --git a/Real/Makefile.PL b/Real/Makefile.PL
index 3c80b6c..33bf474 100755
--- a/Real/Makefile.PL
+++ b/Real/Makefile.PL
@@ -17,7 +17,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 
 WriteMakefile(
 	%hash,
-	'VERSION' => '0.06_02',
+	'VERSION' => '0.07',
 );
 
 # Add genpp rule
diff --git a/Real/Makefile.PL.pkg b/Real/Makefile.PL.pkg
index ddf41fd..c621eba 100755
--- a/Real/Makefile.PL.pkg
+++ b/Real/Makefile.PL.pkg
@@ -16,7 +16,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 WriteMakefile(
 	%hash,
 	'VERSION_FROM' => "",
-	'VERSION' => '0.06_02',
+	'VERSION' => '0.07',
 );
 
 # Add genpp rule
diff --git a/Real/real.pd b/Real/real.pd
index 6b479f4..d611e66 100644
--- a/Real/real.pd
+++ b/Real/real.pd
@@ -4,7 +4,7 @@
 
 do('../Config');
 
-our $VERSION = '0.06_02';
+our $VERSION = '0.07';
 pp_setversion(qq{'$VERSION'});
 $VERSION = eval $VERSION;
 
diff --git a/Special/Makefile.PL b/Special/Makefile.PL
index 8366996..aa417fb 100755
--- a/Special/Makefile.PL
+++ b/Special/Makefile.PL
@@ -2,7 +2,7 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
         'NAME' => 'PDL::LinearAlgebra::Special',
-        'VERSION' => '0.06_02',
+        'VERSION' => '0.07',
        );
 __END__
 
diff --git a/Special/Special.pm b/Special/Special.pm
index e14d5d8..eda8fd7 100644
--- a/Special/Special.pm
+++ b/Special/Special.pm
@@ -12,7 +12,7 @@ no warnings 'uninitialized';
 @EXPORT_OK  = qw( mhilb mvander mpart mhankel mtoeplitz mtri mpascal mcompanion);
 %EXPORT_TAGS = (Func=>[@EXPORT_OK]);
 
-our $VERSION = '0.06_02';
+our $VERSION = '0.07';
 $VERSION = eval $VERSION;
 
 our @ISA = ( 'PDL::Exporter');
diff --git a/Trans/Makefile.PL b/Trans/Makefile.PL
index 7aa8bee..643f91d 100644
--- a/Trans/Makefile.PL
+++ b/Trans/Makefile.PL
@@ -16,7 +16,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 
 WriteMakefile(
 	%hash,
-	'VERSION' => '0.06_02',
+	'VERSION' => '0.07',
 );
 
 # Add genpp rule
diff --git a/Trans/Makefile.PL.pkg b/Trans/Makefile.PL.pkg
index 3863aab..03782ef 100644
--- a/Trans/Makefile.PL.pkg
+++ b/Trans/Makefile.PL.pkg
@@ -15,7 +15,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 WriteMakefile(
 	%hash,
 	'VERSION_FROM' => "",
-	'VERSION' => '0.06_02',
+	'VERSION' => '0.07',
 );
 
 # Add genpp rule
diff --git a/Trans/trans.pd b/Trans/trans.pd
index 69fda56..9dfc5d8 100644
--- a/Trans/trans.pd
+++ b/Trans/trans.pd
@@ -1,4 +1,4 @@
-our $VERSION = '0.06_02';
+our $VERSION = '0.07';
 pp_setversion(qq{'$VERSION'});
 $VERSION = eval $VERSION;
 
@@ -106,6 +106,7 @@ use PDL::LinearAlgebra::Real qw //;
 use PDL::LinearAlgebra::Complex qw //;
 use strict;
 
+
 =head1 NAME
 
 PDL::LinearAlgebra::Trans - Linear Algebra based transcendental functions for PDL

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libpdl-linearalgebra-perl.git



More information about the Pkg-perl-cvs-commits mailing list