diff --git a/NEWS.md b/NEWS.md index 0227bd8d..9a63bef9 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,13 @@ +Release 0.7.15 (31 May 2016) +---------------------------- + +Fixed a long existing bug which potentially leads underestimated insert size +upper bound. This bug should have little effect in practice. + +(0.7.15: 31 May 2016, r1140) + + + Release 0.7.14 (4 May 2016) --------------------------- diff --git a/bwa.1 b/bwa.1 index 994f96a9..11d3854d 100644 --- a/bwa.1 +++ b/bwa.1 @@ -1,4 +1,4 @@ -.TH bwa 1 "23 December 2014" "bwa-0.7.12-r1034" "Bioinformatics tools" +.TH bwa 1 "31 May 2016" "bwa-0.7.15-r1140" "Bioinformatics tools" .SH NAME .PP bwa - Burrows-Wheeler Alignment Tool diff --git a/main.c b/main.c index d917e57f..f936a81f 100644 --- a/main.c +++ b/main.c @@ -4,7 +4,7 @@ #include "utils.h" #ifndef PACKAGE_VERSION -#define PACKAGE_VERSION "0.7.14-r1138-dirty" +#define PACKAGE_VERSION "0.7.15-r1140" #endif int bwa_fa2pac(int argc, char *argv[]);