Skip to content

Commit 9253b88

Browse files
committed
docs: edit readme
1 parent d4fbd9c commit 9253b88

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ bash version.sh
4545
You'll see an interactive menu:
4646
```
4747
Action:
48-
1) Development build 5) Patch version (1.0.x)
49-
2) Staging build 6) Minor version (1.x.0)
50-
3) UAT build 7) Major version (x.0.0)
48+
1) Development build 5) Patch version 1.0.x (e.g. 1.0.1 -> 1.0.2)
49+
2) Staging build 6) Minor version 1.x.0 (e.g. 1.0.1 -> 1.1.0)
50+
3) UAT build 7) Major version x.0.0 (e.g. 1.0.1 -> 2.0.0)
5151
4) Production build 8) Quit
5252
```
5353

src/prompt.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
get_stage_prompt() {
22
title="Action:"
33
prompt="Choose:"
4-
options=("Increment development environment" "Increment staging environment" "Increment UAT environment" "Increment product environment" "Increment patch version (1.0.xx)" "Increment minor version (1.xx.0)" "Increment major version (xx.0.0)")
4+
options=("Increment development environment" "Increment staging environment" "Increment UAT environment" "Increment product environment" "Increment patch version 1.0.xx (e.g. 1.0.1 -> 1.0.2)" "Increment minor version 1.xx.0 (e.g. 1.0.1 -> 1.1.0)" "Increment major version xx.0.0 (e.g. 1.0.1 -> 2.0.0)")
55

66
echo "$title"
77
PS3="$prompt "

0 commit comments

Comments
 (0)