Skip to content

Commit

Permalink
Releasing 0.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
pjotrp committed Mar 13, 2019
1 parent a0b5718 commit 495567f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion BioD
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ possibleto install the build tools with GNU Guix
guix package -i gcc gdb bash ld-wrapper ldc which python2 git

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

guix environment -C guix --ad-hoc gcc gdb bash ld-wrapper ldc which python git
guix environment -C guix --ad-hoc gcc gdb bash ld-wrapper ldc which python git binutils-gold
make clean
make -j 4
make check
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ DLIBS = $(LIBRARY_PATH)/libphobos2-ldc.a $(LIBRARY_PATH)/libdruntime-ldc.a
DLIBS_DEBUG = $(LIBRARY_PATH)/libphobos2-ldc-debug.a $(LIBRARY_PATH)/libdruntime-ldc-debug.a
LIBS = htslib/libhts.a lz4/lib/liblz4.a -L-L$(LIBRARY_PATH) -L-lpthread -L-lm
LIBS_STATIC = $(LIBRARY_PATH)/libc.a $(DLIBS) htslib/libhts.a $(LIBRARY_PATH)/liblz4.a
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))
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))
OBJ = $(SRC:.d=.o)
OUT = bin/sambamba

Expand Down
2 changes: 1 addition & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## ChangeLog v0.6.9-pre
## ChangeLog v0.6.9 (20190313)

+ Added support for Picard style sorting, see https://github.com/biod/sambamba/issues/369 - thanks https://github.com/TimurIs
+ 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
Expand Down
4 changes: 2 additions & 2 deletions sambamba/main.d
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
This file is part of Sambamba.
Copyright (C) 2012-2017 Artem Tarasov <lomereiter@gmail.com>
Copyright (C) 2012-2018 Pjotr Prins <pjotr.prins@thebird.nl>
Copyright (C) 2012-2019 Pjotr Prins <pjotr.prins@thebird.nl>
Sambamba is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -87,7 +87,7 @@ For bug reports and feature requests see

void printVersion() {
stderr.writeln();
stderr.writeln("sambamba " ~ VERSION ~ " by Artem Tarasov and Pjotr Prins (C) 2012-2018");
stderr.writeln("sambamba " ~ VERSION ~ " by Artem Tarasov and Pjotr Prins (C) 2012-2019");
stderr.writeln(" LDC " ~ LDC_VERSION_STRING ~ " / DMD " ~ DMD_VERSION_STRING ~
" / LLVM" ~ LLVM_VERSION_STRING ~ " / bootstrap " ~ BOOTSTRAP_VERSION_STRING);
stderr.writeln();
Expand Down
2 changes: 1 addition & 1 deletion utils/version_.d
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module utils.version_;

immutable string VERSION = "0.6.8";
immutable string VERSION = "0.6.9";
immutable string HEADER_VERSION = "1.0"; // goes in header for reproducibility between sambamba versions

import bio.std.hts.sam.header;
Expand Down

0 comments on commit 495567f

Please sign in to comment.