Skip to content

Commit

Permalink
Merge pull request #36 from icl-utk-edu/v2.9.0
Browse files Browse the repository at this point in the history
V2.9.0
  • Loading branch information
abdelfattah83 authored Jan 28, 2025
2 parents 9c81048 + 8510567 commit 48a32d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion include/magma_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ float magma_cabsf( magmaFloatComplex x );

// -----------------------------------------------------------------------------
#define MAGMA_VERSION_MAJOR 2
#define MAGMA_VERSION_MINOR 8
#define MAGMA_VERSION_MINOR 9
#define MAGMA_VERSION_MICRO 0

// stage is "svn", "beta#", "rc#" (release candidate), or blank ("") for final release
Expand Down
6 changes: 2 additions & 4 deletions tools/MakeMagmaRelease.pl
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,11 @@ sub MakeRelease
);
$year += 1900;

# Require recent doxygen, say >= 1.8.
# ICL machines have ancient versions of doxygen (1.4 and 1.6);
# the docs don't work at all.
# Require recent doxygen, say >= 1.12.
my $doxygen = `doxygen --version`;
chomp $doxygen;
my($v) = $doxygen =~ m/^(\d+\.\d+)\.\d+$/;
my $doxygen_require = 1.8;
my $doxygen_require = 1.12;
if ( $v < $doxygen_require ) {
print <<EOT;
=====================================================================
Expand Down

0 comments on commit 48a32d7

Please sign in to comment.