Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmake/CPM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#
# SPDX-FileCopyrightText: Copyright (c) 2019-2023 Lars Melchior and contributors

set (CPM_DOWNLOAD_VERSION 0.42.0)
set (CPM_HASH_SUM "2020b4fc42dba44817983e06342e682ecfc3d2f484a581f11cc5731fbe4dce8a")
set (CPM_DOWNLOAD_VERSION 0.42.1)
set (CPM_HASH_SUM "f3a6dcc6a04ce9e7f51a127307fa4f699fb2bade357a8eb4c5b45df76e1dc6a5")

if (CPM_SOURCE_CACHE)
set (CPM_DOWNLOAD_LOCATION "${CPM_SOURCE_CACHE}/cpm/CPM_${CPM_DOWNLOAD_VERSION}.cmake")
Expand Down
5 changes: 3 additions & 2 deletions cmake/package-lock.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ CPMDeclarePackage (hibf
)

# sharg
set (SHARG_VERSION d3b6c025554fc28a6f94d475fc136894b441432e CACHE STRING "")
set (SHARG_VERSION 1.2.1 CACHE STRING "")
CPMDeclarePackage (sharg
NAME sharg
GIT_TAG ${SHARG_VERSION} # main
VERSION ${SHARG_VERSION}
GIT_TAG ${SHARG_VERSION}
GITHUB_REPOSITORY seqan/sharg-parser
SYSTEM TRUE
EXCLUDE_FROM_ALL TRUE
Expand Down
1 change: 1 addition & 0 deletions test/cli_fastq_coversion_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ TEST_F(fastq_to_fasta, no_options)
app_test_result const result = execute_app("app-template");
std::string_view const expected{"Fastq-to-Fasta-Converter\n"
"========================\n"
" app-template [-v|--verbose] [-o|--output path] [--] path\n"
" Try -h or --help for more information.\n"};

EXPECT_SUCCESS(result);
Expand Down