Skip to content

Commit

Permalink
version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
toshi0383 committed Jul 25, 2018
1 parent 65d5d37 commit 164c7af
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.1
##### Bugfix
* Fix failing to execute non-shell script [#75](https://github.com/toshi0383/cmdshelf/pull/75)
[Toshihiro Suzuki](https://github.com/toshi0383)

## 1.0.0
##### Bugfix
* Doesn't work in for loop? [#72](https://github.com/toshi0383/cmdshelf/issues/72)
Expand Down
2 changes: 1 addition & 1 deletion Sources/cmdshelf/main.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Foundation
import Reporter

let version = "1.0.0"
let version = "1.0.1"

//
// - MARK: Setup
Expand Down
2 changes: 1 addition & 1 deletion doc/man/man1/cmdshelf-blob.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "CMDSHELF-BLOB" "1" "February 2018" "cmdshelf 1.0.0" "Cmdshelf Manual"
.TH "CMDSHELF-BLOB" "1" "February 2018" "cmdshelf 1.0.1" "Cmdshelf Manual"
.SH "NAME"
cmdshelf-blob - Manage blobs
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion doc/man/man1/cmdshelf-cat.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "CMDSHELF-CAT" "1" "February 2018" "cmdshelf 1.0.0" "Cmdshelf Manual"
.TH "CMDSHELF-CAT" "1" "February 2018" "cmdshelf 1.0.1" "Cmdshelf Manual"
.SH "NAME"
cmdshelf-cat - Concatenate and print command(s).
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion doc/man/man1/cmdshelf-list.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "CMDSHELF-LIST" "1" "January 2018" "cmdshelf 1.0.0" "Cmdshelf Manual"
.TH "CMDSHELF-LIST" "1" "January 2018" "cmdshelf 1.0.1" "Cmdshelf Manual"
.SH "NAME"
cmdshelf-list - Show all registered commands.
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion doc/man/man1/cmdshelf-remote.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "CMDSHELF-REMOTE" "1" "February 2018" "cmdshelf 1.0.0" "Cmdshelf Manual"
.TH "CMDSHELF-REMOTE" "1" "February 2018" "cmdshelf 1.0.1" "Cmdshelf Manual"
.SH "NAME"
cmdshelf-remote - Manage set of tracked repositories
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion doc/man/man1/cmdshelf-run.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "CMDSHELF-RUN" "1" "February 2018" "cmdshelf 1.0.0" "Cmdshelf Manual"
.TH "CMDSHELF-RUN" "1" "February 2018" "cmdshelf 1.0.1" "Cmdshelf Manual"
.SH "NAME"
cmdshelf-run - Execute command
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion doc/man/man1/cmdshelf-update.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "CMDSHELF-UPDATE" "1" "February 2018" "cmdshelf 1.0.0" "Cmdshelf Manual"
.TH "CMDSHELF-UPDATE" "1" "February 2018" "cmdshelf 1.0.1" "Cmdshelf Manual"
.SH "NAME"
cmdshelf-update - Update cloned local repositories.
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion doc/man/man1/cmdshelf.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "CMDSHELF" "1" "January 2018" "cmdshelf 1.0.0" "Cmdshelf Manual"
.TH "CMDSHELF" "1" "January 2018" "cmdshelf 1.0.1" "Cmdshelf Manual"
.SH "NAME"
\fBcmdshelf\fR - Manage your scripts like a bookshelf.
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion tests/main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ before_each
VERSION=$($CMDSHELF --version)
exit_status=$?

if [ "${VERSION}" != "1.0.0" ];then
if [ "${VERSION}" != "1.0.1" ];then
echo \-\-version printed invalid value: $VERSION
echo 011 FAILED
STATUS=1
Expand Down

0 comments on commit 164c7af

Please sign in to comment.