From 9105f6a5e45e5708f3534f5f4ce6a0544462f0f5 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Sun, 14 Dec 2008 15:01:51 -0800 Subject: [PATCH] Fix POD rendering of Changes file and version bump --- Changes | 6 ++++-- META.yml | 4 ++-- lib/Math/GSL.pm | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Changes b/Changes index 50d9022..8b0b6c5 100644 --- a/Changes +++ b/Changes @@ -1,8 +1,9 @@ =head1 Math::GSL Changes -=head1 v0.16 - December ?? 2008 +=head1 v0.16 - December 14 2008 (Happy Snowpocalypse PDX!) + - Fixed RT#40947: configure_requires ExtUtils::PkgConfig bug - - Added reverse() method to VectorComplex objects with tests and docs + - Added reverse() and swap() methods to VectorComplex objects with tests and docs - as_list() and get() now work on VectorComplex objects as_list() returns a list of Math::Complex objects get() returns a list of Math::GSL::Complex objects @@ -27,6 +28,7 @@ =head1 v0.14 - October 21 2008 + - Chebyshev Series Approximation, with tests and docs - Examples and new documentation in Statistics, as well as tests (Thierry) - Bugfixes relating to compiling on 64bit Red Hat Linux, reported by Michael Roberge diff --git a/META.yml b/META.yml index 85d5cf6..32f588d 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- name: Math-GSL -version: 0.15_06 +version: 0.16 author: - 'Jonathan Leto ' abstract: Interface to the GNU Scientific Library using SWIG @@ -20,7 +20,7 @@ requires: provides: Math::GSL: file: lib/Math/GSL.pm - version: 0.15_06 + version: 0.16 Math::GSL::BLAS: file: lib/Math/GSL/BLAS.pm Math::GSL::BLASc: diff --git a/lib/Math/GSL.pm b/lib/Math/GSL.pm index d6348a6..3e09f37 100644 --- a/lib/Math/GSL.pm +++ b/lib/Math/GSL.pm @@ -23,7 +23,7 @@ our %EXPORT_TAGS = ( all => \@EXPORT_OK, ); our ($GSL_PREC_DOUBLE, $GSL_PREC_SINGLE, $GSL_PREC_APPROX ) = 0 .. 2; our $GSL_MODE_DEFAULT = $GSL_PREC_DOUBLE; -our $VERSION = '0.15_06'; +our $VERSION = '0.16'; =head1 NAME @@ -31,7 +31,7 @@ Math::GSL - Perl interface to the GNU Scientific Library (GSL) =head1 VERSION -Version 0.15_06 +Version 0.16 =head1 SYNOPSIS -- 2.11.4.GIT