From cfc7bc9c60d176588f51ebcb34c95f3c148fd2fd Mon Sep 17 00:00:00 2001 From: Chen Wang Date: Mon, 23 Jan 2023 11:56:05 -0800 Subject: [PATCH] Update README and version in cmake file --- CMakeLists.txt | 2 +- README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 82a2d76..19dc286 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ include_directories(${PROJECT_BINARY_DIR}) #------------------------------------------------------------------------------ set(RECORDER_VERSION_MAJOR "2") set(RECORDER_VERSION_MINOR "3") -set(RECORDER_VERSION_PATCH "2") +set(RECORDER_VERSION_PATCH "3") set(RECORDER_PACKAGE "recorder") set(RECORDER_PACKAGE_NAME "RECORDER") set(RECORDER_PACKAGE_VERSION "${RECORDER_VERSION_MAJOR}.${RECORDER_VERSION_MINOR}.${RECORDER_VERSION_PATCH}") diff --git a/README.md b/README.md index 073cad0..43854b1 100644 --- a/README.md +++ b/README.md @@ -232,6 +232,7 @@ Change Log 1. Still require a RECORDER\_WITH\_NON\_MPI hint for non-mpi programs. 2. Add a singal handler to intercept SIGTERM and SIGINT. 3. Allow setting buffer size +4. Fix timestamps in Chrome trace conversion **Recorder 2.3.2** Jan 18, 2022 1. Can handle both MPI and non-MPI programs without user hint.