From f55680ee69f7907651d9b3c58476540c3542c25a Mon Sep 17 00:00:00 2001 From: Tom Clune Date: Fri, 1 May 2020 14:27:36 -0400 Subject: [PATCH] Added free() mechanism for MPI resources. --- CMakeLists.txt | 2 +- ChangeLog.md | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7037c72..aeaf9f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ # ------------------------------------------------------------------------ # cmake_minimum_required (VERSION 3.8.0) project (PFLOGGER - VERSION 1.4.0 + VERSION 1.4.1 LANGUAGES Fortran) set (CMAKE_MODULE_PATH diff --git a/ChangeLog.md b/ChangeLog.md index 6de515f..ca9da7d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.4.1] - 2020-05-01 + +### Added +- Added free() methods to various classes to ensure that MPI resources + are deleted at the end of the run. Without this, some MPI flavors + will report an error on MPI_Finalize(). To use: + + call logging%free + ## [1.4.0] - 2020-04-17 ### Added