MDAL 0.6.1 patch release (#37246)

This commit is contained in:
Peter Petrik 2020-06-16 17:24:37 +02:00 committed by GitHub
parent 65ba272cb7
commit 659ed397a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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()