Skip to content

Commit 84ee5d5

Browse files
committed
Bump Version to 0.9.0
1 parent 55b58b1 commit 84ee5d5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[#50](https://github.com/toshi0383/cmdshelf/issues/50)
99
**Breaking**: This changes the way subcommand is evaluated. Double/Single quoted alias parameter argument does not work any more.
1010

11-
## 0.8.0
11+
## 0.9.0
1212
##### Enhancements
1313
* No need to quote command with parameters
1414
[Toshihiro Suzuki](https://github.com/toshi0383)

Sources/cmdshelf/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import PathKit
33
import Foundation
44
import Reporter
55

6-
let version = "0.8.0"
6+
let version = "0.9.0"
77

88
//
99
// - MARK: Setup

scripts/bump-version.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
VERSION=${1:?}
3+
CURRENT=${2:-`cmdshelf --version`}
4+
git grep -l $CURRENT | xargs sed -i "" -e "s/${CURRENT}/${VERSION}/g"

0 commit comments

Comments
 (0)