Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update help text in release_version_update_docs.sh
  • Loading branch information
jimschubert committed Jun 6, 2019
commit f717e90880217da9060dec2b261a7a5ba41d2489
8 changes: 4 additions & 4 deletions bin/utils/release/release_version_update_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ declare cwd=$(cd $(dirname "${BASH_SOURCE}") && pwd)
declare root=$(cd "$cwd" && cd ../../../ && pwd)

USAGE="
USAGE: $0 [version] target
USAGE: $0 version target

This script will convert the specified version in DOC target files to the 'target'
where target is one of:
Expand All @@ -43,11 +43,11 @@ NOTE:
EXAMPLES:

Update build version (1.0.0 -> 1.0.1)
$0 build
$0 1.0.0 build
Update minor version (1.2.3 -> 1.3.0)
$0 minor
$0 1.2.3 minor
Update major version (1.2.3 -> 2.0.0)
$0 major
$0 1.2.3 major
"

declare version=$(ruby -r rexml/document -e 'include REXML;
Expand Down