Skip to content

Commit 495567f

Browse files
committed
Releasing 0.6.9
1 parent a0b5718 commit 495567f

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ possibleto install the build tools with GNU Guix
1818
guix package -i gcc gdb bash ld-wrapper ldc which python2 git
1919

2020
Even better, with Guix, you can create a light-weight container in the source tree
21-
and run our development setup
21+
and run our development setup (gold was added lately by ldc)
2222

23-
guix environment -C guix --ad-hoc gcc gdb bash ld-wrapper ldc which python git
23+
guix environment -C guix --ad-hoc gcc gdb bash ld-wrapper ldc which python git binutils-gold
2424
make clean
2525
make -j 4
2626
make check

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ DLIBS = $(LIBRARY_PATH)/libphobos2-ldc.a $(LIBRARY_PATH)/libdruntime-ldc.a
3434
DLIBS_DEBUG = $(LIBRARY_PATH)/libphobos2-ldc-debug.a $(LIBRARY_PATH)/libdruntime-ldc-debug.a
3535
LIBS = htslib/libhts.a lz4/lib/liblz4.a -L-L$(LIBRARY_PATH) -L-lpthread -L-lm
3636
LIBS_STATIC = $(LIBRARY_PATH)/libc.a $(DLIBS) htslib/libhts.a $(LIBRARY_PATH)/liblz4.a
37-
SRC = utils/ldc_version_info_.d utils/lz4.d utils/strip_bcf_header.d $(wildcard BioD/contrib/undead/*.d BioD/contrib/undead/*/*.d) utils/version_.d $(sort $(wildcard thirdparty/*.d cram/*.d) $(wildcard BioD/bio/*/*.d BioD/bio/*/*/*.d BioD/bio/*/*/*/*.d BioD/bio/*/*/*/*/*.d) $(wildcard sambamba/*.d sambamba/*/*.d sambamba/*/*/*.d))
37+
SRC = utils/ldc_version_info_.d utils/lz4.d utils/strip_bcf_header.d $(sort $(wildcard BioD/contrib/undead/*.d BioD/contrib/undead/*/*.d)) utils/version_.d $(sort $(wildcard thirdparty/*.d cram/*.d) $(wildcard BioD/bio/*/*.d BioD/bio/*/*/*.d BioD/bio/*/*/*/*.d BioD/bio/*/*/*/*/*.d) $(wildcard sambamba/*.d sambamba/*/*.d sambamba/*/*/*.d))
3838
OBJ = $(SRC:.d=.o)
3939
OUT = bin/sambamba
4040

RELEASE-NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## ChangeLog v0.6.9-pre
1+
## ChangeLog v0.6.9 (20190313)
22

33
+ Added support for Picard style sorting, see https://github.com/biod/sambamba/issues/369 - thanks https://github.com/TimurIs
44
+ Add a new sorting option to pull together mates when sorting by read name, see https://github.com/biod/sambamba/pull/380 - thanks https://github.com/emi80

sambamba/main.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This file is part of Sambamba.
33
Copyright (C) 2012-2017 Artem Tarasov <lomereiter@gmail.com>
4-
Copyright (C) 2012-2018 Pjotr Prins <pjotr.prins@thebird.nl>
4+
Copyright (C) 2012-2019 Pjotr Prins <pjotr.prins@thebird.nl>
55
66
Sambamba is free software; you can redistribute it and/or modify
77
it under the terms of the GNU General Public License as published by
@@ -87,7 +87,7 @@ For bug reports and feature requests see
8787

8888
void printVersion() {
8989
stderr.writeln();
90-
stderr.writeln("sambamba " ~ VERSION ~ " by Artem Tarasov and Pjotr Prins (C) 2012-2018");
90+
stderr.writeln("sambamba " ~ VERSION ~ " by Artem Tarasov and Pjotr Prins (C) 2012-2019");
9191
stderr.writeln(" LDC " ~ LDC_VERSION_STRING ~ " / DMD " ~ DMD_VERSION_STRING ~
9292
" / LLVM" ~ LLVM_VERSION_STRING ~ " / bootstrap " ~ BOOTSTRAP_VERSION_STRING);
9393
stderr.writeln();

utils/version_.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module utils.version_;
22

3-
immutable string VERSION = "0.6.8";
3+
immutable string VERSION = "0.6.9";
44
immutable string HEADER_VERSION = "1.0"; // goes in header for reproducibility between sambamba versions
55

66
import bio.std.hts.sam.header;

0 commit comments

Comments
 (0)