Merge branch 'dev'

This commit is contained in:
Heng Li 2016-05-31 09:43:16 -04:00
commit 08764215c6
3 changed files with 12 additions and 2 deletions

10
NEWS.md
View File

@ -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)
---------------------------

2
bwa.1
View File

@ -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

2
main.c
View File

@ -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[]);