Skip to content

Commit

Permalink
Update copyright year and create new release
Browse files Browse the repository at this point in the history
  • Loading branch information
HacKanCuBa committed Feb 9, 2020
1 parent cc99e1a commit 7d889e5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion man/b2rsum.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH B2RSUM "1" "April 2017" "b2rsum v0.1.2" "BLAKE2 Recursive Sum"
.TH B2RSUM "1" "February 2020" "b2rsum v0.1.3" "BLAKE2 Recursive Sum"

.SH NAME
b2rsum \- compute and check BLAKE2 message digest recursively
Expand Down
13 changes: 9 additions & 4 deletions src/b2rsum.bash
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
##############################################################################
#
# b2rsum Copyright © 2017 HacKan (https://hackan.net)
# b2rsum Copyright © 2017, 2018, 2019, 2020 HacKan (https://hackan.net)
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
Expand All @@ -34,6 +34,11 @@
# Changelog
#=====================
#
# v0.1.3
# - Greatly improve readme with use cases and help output.
# - Replace `tempfile` with `mktemp` which is more common among diff distros.
# - Replace `which` with `command -v` which is built-in.
#
# v0.1.2
# - Some changes in the order of info in help message.
# - Output option now accepts optional argument.
Expand All @@ -52,7 +57,7 @@
#------------------------------------------------------------------------

# Config
declare -r VERSION="0.1.2"
declare -r VERSION="0.1.3"
declare -r OUTPUT_FILENAME_DEFAULT="BLAKE2SUMS"
declare -r QUIET_DEFAULT=false
#--------------------------#
Expand Down Expand Up @@ -122,7 +127,7 @@ check_dependencies() {
cmd_license() {
cat <<-_EOF
${PROGRAM}: recursive BLAKE2 hash maker and verifier
Copyright (C) 2017 HacKan (https://hackan.net)
Copyright (C) 2020 HacKan (https://hackan.net)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -141,7 +146,7 @@ cmd_license() {

cmd_version() {
cat <<-_EOF
${PROGRAM} v${VERSION} Copyright (C) 2017 HacKan (https://hackan.net)
${PROGRAM} v${VERSION} Copyright (C) 2020 HacKan (https://hackan.net)
_EOF
}

Expand Down

0 comments on commit 7d889e5

Please sign in to comment.