diff --git a/bin/goldrush b/bin/goldrush index ebc0700..d973f75 100755 --- a/bin/goldrush +++ b/bin/goldrush @@ -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 v0.9.0 +# GoldRush v0.9.1 # Input files reads=reads @@ -105,12 +105,12 @@ endif .SECONDARY: version: - @echo "goldrush v0.9.0" + @echo "goldrush v0.9.1" # Help help: @echo "GoldRush" - @echo "v0.9.0" + @echo "v0.9.1" @echo "" @echo "Usage: goldrush [COMMAND] [OPTION=VALUE]…" @echo "" diff --git a/meson.build b/meson.build index 271697a..720518f 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('goldrush', 'cpp', - version : '0.9.0', - license : 'MIT', + version : '0.9.1', + license : 'GPL-3', default_options : [ 'cpp_std=c++17', 'warning_level=3', 'werror=true' ]) btllib_dep = declare_dependency(include_directories : 'external/btllib/include')