From 0e7048540a02afd9c611c996cafe808d2b904409 Mon Sep 17 00:00:00 2001
From: Veronique Legrand <vlegrand@pasteur.fr>
Date: Fri, 7 Jan 2022 12:12:55 +0100
Subject: [PATCH] New version 1.9.6 with bugfix

---
 NEWS               | 6 ++++++
 configure.ac       | 2 +-
 src/ROCKparams.cpp | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index d95f0a9..24756f0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+New in version 1.9.6
+ * Fixed bug that caused wrong results when a + char was encounterd in read identifier.
+
+New in version 1.9.5
+ * Fixed bug that caused the rest of the score line to be ignored when a + char was encountered in it.
+
 New in version 1.9.4
  * removed .undef files
  * refactored code: now hashing a kmer and its reverse in the same loop.
diff --git a/configure.ac b/configure.ac
index fdf809f..e2143e2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.59)
-AC_INIT(rock, 1.9.5)
+AC_INIT(rock, 1.9.6)
 
 
 AC_CANONICAL_SYSTEM
diff --git a/src/ROCKparams.cpp b/src/ROCKparams.cpp
index 38a066f..680bb6e 100755
--- a/src/ROCKparams.cpp
+++ b/src/ROCKparams.cpp
@@ -41,7 +41,7 @@ const int ROCKparams::undef_ext;
 
 void usage(int status) {
 	cout<<endl;
-	cout<<"ROCK 1.9.5                    Copyright (C) 2016-2021 Institut Pasteur"<<endl;
+	cout<<"ROCK 1.9.6                    Copyright (C) 2016-2021 Institut Pasteur"<<endl;
 	cout<<endl;
 	cout<<"Reducing Over-Covering K-mers within FASTQ file(s)"<<endl;
 	cout<<endl;
-- 
GitLab