From eaa43c14b7c24056c2af03d28834e87c9a1137b3 Mon Sep 17 00:00:00 2001 From: JW <34543031+jwcodee@users.noreply.github.com> Date: Thu, 3 Oct 2024 08:33:56 -0700 Subject: [PATCH] prep for release 1.2.0 (#143) --- README.md | 2 +- bin/goldrush | 6 +++--- meson.build | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6ecec1a..294f30c 100755 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Logo Design: Rene L. Warren ## Usage ``` GoldRush -v1.1.2 +v1.2.0 Usage: goldrush [COMMAND] [OPTION=VALUE]… diff --git a/bin/goldrush b/bin/goldrush index fa555ea..b8dc7e1 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 v1.1.2 +# GoldRush v1.2.0 # Input files reads=reads @@ -131,12 +131,12 @@ endif .SECONDARY: version: - @echo "goldrush v1.1.2" + @echo "goldrush v1.2.0" # Help help: @echo "GoldRush" - @echo "v1.1.2" + @echo "v1.2.0" @echo "" @echo "Usage: goldrush [COMMAND] [OPTION=VALUE]…" @echo "" diff --git a/meson.build b/meson.build index c46670b..4510ea3 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('goldrush', 'cpp', - version : '1.1.2', + version : '1.2.0', license : 'GPL-3', default_options : [ 'cpp_std=c++17', 'warning_level=3', 'werror=true' ])