From 8f4c966ee2085ea48c6316923fd348af1bc9d7d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20H=C3=A6gland?= Date: Thu, 25 Jul 2024 23:06:03 +0200 Subject: [PATCH] Bump version (#37) --- Changes | 13 +++++++++++++ developer/wiki/Upload.md | 4 ++++ lib/Math/GSL.pm | 4 ++-- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index aa5c61b..9b11ffc 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,18 @@ =head1 Math::GSL Changes +=head v0.48 - July 2024 + - Fix build failure for gcc 14 on debian (emollier) + +=head v0.47 - July 2024 + - Build shared libgsl.so by default. See https://github.com/PerlAlien/Alien-GSL/issues/17 for + more information. + +=head v0.46 - July 2024 + - Fixes some test failures compared to version 0.45 released at metacpan.org: + - Linalg.t : "GSL LINALG LU DECOMP" returned 0 instead of 4 + - Matrix.so: undefined symbol: gsl_matrix_char_norm1 and gsl_spmatrix_char_norm1 + - Fixes wrong version number in Changes file + =head v0.45 - July 2024 - Added support for GSL 2.8 (hakonhagland) - Update to distribution metadata (mohawk2) diff --git a/developer/wiki/Upload.md b/developer/wiki/Upload.md index ae36148..59f6f49 100644 --- a/developer/wiki/Upload.md +++ b/developer/wiki/Upload.md @@ -22,6 +22,10 @@ cd developer/bin Update the `Changes` file. +## Push to GitHub + +Push the changes introduced above to GitHub + ## Build the CPAN distribution Commit the changes above to the master branch, and push them to the remote (origin). Next, to build diff --git a/lib/Math/GSL.pm b/lib/Math/GSL.pm index fdc5a80..bca75f6 100644 --- a/lib/Math/GSL.pm +++ b/lib/Math/GSL.pm @@ -26,7 +26,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.47'; +our $VERSION = '0.48'; =head1 NAME @@ -34,7 +34,7 @@ Math::GSL - Perl interface to the GNU Scientific Library (GSL) =head1 VERSION -Version 0.47 +Version 0.48 =head1 SYNOPSIS