8000 Prepare for release v1.0.1 by lcoombe · Pull Request #77 · bcgsc/goldrush · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Prepare for release v1.0.1 #77

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 23, 2022
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Coombe, L., Warren, R., Nikolic, V., Wong, J., & Birol, I. (2022, July 10–14).
## Usage
```
GoldRush
v1.0.0
v1.0.1

Usage: goldrush [COMMAND] [OPTION=VALUE]…

Expand Down
6 changes: 3 additions & 3 deletions bin/goldrush
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/make -rRf
# Pipeline for the Goldrush program
# Written by Puneet Sidhu, Johnathan Wong, Lauren Coombe, and Vladimir Nikolic
# GoldRush v1.0.0
# GoldRush v1.0.1

# Input files
reads=reads
Expand Down Expand Up @@ -109,12 +109,12 @@ endif
.SECONDARY:

version:
@echo "goldrush v1.0.0"
@echo "goldrush v1.0.1"

# Help
help:
@echo "GoldRush"
@echo "v1.0.0"
@echo "v1.0.1"
@echo ""
@echo "Usage: goldrush [COMMAND] [OPTION=VALUE]…"
@echo ""
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('goldrush', 'cpp',
version : '1.0.0',
version : '1.0.1',
license : 'GPL-3',
default_options : [ 'cpp_std=c++17', 'warning_level=3', 'werror=true' ])

Expand Down
0