diff --git a/NEWS.md b/NEWS.md index 82a0f6c0..33a47601 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,22 @@ +Release 0.7.10 (13 July, 2014) +------------------------------ + +Notable changes to BWA-MEM: + + * Fixed a segmentation fault due to an alignment bridging the forward-reverse + boundary. This is a bug. + + * Use the PacBio heuristic to map contigs to the reference genome. The old + heuristic evaluates the necessity of full extension for each chain. This may + not work in long low-complexity regions. The PacBio heuristic performs + SSE2-SW around each short seed. It works better. Note that the heuristic is + only applied to long query sequences. For Illumina reads, the output is + identical to the previous version. + +(0.7.10: 13 July 2014, r789) + + + Release 0.7.9 (19 May, 2014) ---------------------------- diff --git a/main.c b/main.c index 4be18a2b..b873b756 100644 --- a/main.c +++ b/main.c @@ -4,7 +4,7 @@ #include "utils.h" #ifndef PACKAGE_VERSION -#define PACKAGE_VERSION "0.7.9a-r788-dirty" +#define PACKAGE_VERSION "0.7.10-r789" #endif int bwa_fa2pac(int argc, char *argv[]);