From f76d4ec142611345210bf6eb1726aa1cc3d308f4 Mon Sep 17 00:00:00 2001 From: Charles Plessy Date: Fri, 13 Sep 2024 11:42:18 +0900 Subject: [PATCH] Release version 1.2.1 --- RELEASE_HISTORY | 4 ++++ src/pairedBamToBed12/pairedBamToBed12.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/RELEASE_HISTORY b/RELEASE_HISTORY index 973eb001..d6ff4cef 100644 --- a/RELEASE_HISTORY +++ b/RELEASE_HISTORY @@ -1,3 +1,7 @@ +Version 1.2.1 (September 13th, 2024, codename Typhoon approaching) + +C++17 fixes thanks to ChatGPT. + Version 1.2 (August 15th, 2015, codename chassé-croisé) Added an experimental -extraG option to correct for G-mismatches on the first diff --git a/src/pairedBamToBed12/pairedBamToBed12.cpp b/src/pairedBamToBed12/pairedBamToBed12.cpp index 1d66db46..9603610f 100644 --- a/src/pairedBamToBed12/pairedBamToBed12.cpp +++ b/src/pairedBamToBed12/pairedBamToBed12.cpp @@ -40,7 +40,7 @@ using namespace std; // define our program name and version #define PROGRAM_NAME "pairedBamToBed12" -#define PROGRAM_VERSION "1.2" +#define PROGRAM_VERSION "1.2.1" // define our parameter checking macro #define PARAMETER_CHECK(param, paramLen, actualLen) (strncmp(argv[i], param, min(actualLen, paramLen))== 0) && (actualLen == paramLen)