From a3fc625fdb5cd5b9e8c4692fba086a1863e1feab Mon Sep 17 00:00:00 2001 From: tobiasrausch Date: Mon, 3 Feb 2020 15:40:03 +0100 Subject: [PATCH] v0.8.2 --- LICENSE | 2 +- Makefile | 2 +- docker/Dockerfile | 1 - src/version.h | 4 ++-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/LICENSE b/LICENSE index b8d992f..6a72a7a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2019 Delly Project Authors (see AUTHORS file for details). +Copyright (c) 2020 Delly Project Authors (see AUTHORS file for details). All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/Makefile b/Makefile index fc572ff..3af8c1a 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ HTSLIBSOURCES = $(wildcard src/htslib/*.c) $(wildcard src/htslib/*.h) SOURCES = $(wildcard src/*.h) $(wildcard src/*.cpp) # Targets -BUILT_PROGRAMS = src/delly src/dellyLR +BUILT_PROGRAMS = src/delly TARGETS = ${SUBMODULES} ${BUILT_PROGRAMS} all: $(TARGETS) diff --git a/docker/Dockerfile b/docker/Dockerfile index 5fa1495..aa3d77f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -40,7 +40,6 @@ FROM alpine:latest RUN mkdir -p /opt/delly/bin WORKDIR /opt/delly/bin COPY --from=0 /opt/delly/bin/delly . -COPY --from=0 /opt/delly/bin/dellyLR . # Workdir WORKDIR /root/ diff --git a/src/version.h b/src/version.h index c9992cd..f81de7c 100644 --- a/src/version.h +++ b/src/version.h @@ -5,7 +5,7 @@ namespace torali { - std::string dellyVersionNumber = "0.8.1"; + std::string dellyVersionNumber = "0.8.2"; inline void printTitle(std::string const& title) @@ -37,7 +37,7 @@ namespace torali inline void bsd() { - std::cout << "Copyright (c) 2019 Delly Project Authors (see AUTHORS file for details)." << std::endl; + std::cout << "Copyright (c) 2020 Delly Project Authors (see AUTHORS file for details)." << std::endl; std::cout << "All rights reserved." << std::endl; std::cout << std::endl; std::cout << "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:" << std::endl;