Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 0.48 #37

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 4 additions & 0 deletions developer/wiki/Upload.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/Math/GSL.pm
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ 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

Math::GSL - Perl interface to the GNU Scientific Library (GSL)

=head1 VERSION

Version 0.47
Version 0.48

=head1 SYNOPSIS

Expand Down
Loading