Skip to content

Commit

Permalink
MDAL 0.6.1 patch release (#37246)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPetrik committed Jun 16, 2020
1 parent 65ba272 commit 659ed39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion external/mdal/frmts/mdal_flo2d.cpp
Expand Up @@ -827,7 +827,7 @@ bool MDAL::DriverFlo2D::appendGroup( HdfFile &file, MDAL::DatasetGroup *dsGroup,
const Statistics st = dataset->statistics();
maximums[i] = static_cast<float>( st.maximum );
minimums[i] = static_cast<float>( st.minimum );
times.push_back( dataset->time( RelativeTimestamp::hours ) );
times[i] = dataset->time( RelativeTimestamp::hours ) ;
}

// store data
Expand Down
2 changes: 1 addition & 1 deletion external/mdal/mdal.cpp
Expand Up @@ -21,7 +21,7 @@ static const char *EMPTY_STR = "";

const char *MDAL_Version()
{
return "0.6.0";
return "0.6.1";
}

MDAL_Status MDAL_LastStatus()
Expand Down

0 comments on commit 659ed39

Please sign in to comment.