Skip to content

Commit

Permalink
Bump Version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
toshi0383 committed Jan 15, 2018
1 parent 55b58b1 commit 84ee5d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[#50](https://github.com/toshi0383/cmdshelf/issues/50)
**Breaking**: This changes the way subcommand is evaluated. Double/Single quoted alias parameter argument does not work any more.

## 0.8.0
## 0.9.0
##### Enhancements
* No need to quote command with parameters
[Toshihiro Suzuki](https://github.com/toshi0383)
Expand Down
2 changes: 1 addition & 1 deletion Sources/cmdshelf/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PathKit
import Foundation
import Reporter

let version = "0.8.0"
let version = "0.9.0"

//
// - MARK: Setup
Expand Down
4 changes: 4 additions & 0 deletions scripts/bump-version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
VERSION=${1:?}
CURRENT=${2:-`cmdshelf --version`}
git grep -l $CURRENT | xargs sed -i "" -e "s/${CURRENT}/${VERSION}/g"

0 comments on commit 84ee5d5

Please sign in to comment.