Skip to content

Commit bfbd1ef

Browse files
committed
bump version number
1 parent b6ad1ea commit bfbd1ef

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Additionally, you can **transfer** properties from one YAML to another YAML
1414
### OS X
1515

1616
```bash
17-
$ wget -O /usr/local/bin/goml https://github.com/JulzDiverse/goml/releases/download/v0.5.0/goml-darwin-amd64 && chmod +x /usr/local/bin/goml
17+
$ wget -O /usr/local/bin/goml https://github.com/JulzDiverse/goml/releases/download/v0.6.0/goml-darwin-amd64 && chmod +x /usr/local/bin/goml
1818
```
1919

2020
**Using Homebrew:**
@@ -27,7 +27,7 @@ $ brew install goml
2727
### Linux
2828

2929
```bash
30-
$ wget -O /usr/bin/goml https://github.com/JulzDiverse/goml/releases/download/v0.5.0/goml-linux-amd64 && chmod +x /usr/bin/goml
30+
$ wget -O /usr/bin/goml https://github.com/JulzDiverse/goml/releases/download/v0.6.0/goml-linux-amd64 && chmod +x /usr/bin/goml
3131
```
3232

3333
## Usage

cmd/goml/main.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func main() {
2222
}
2323
cmd.Name = "goml"
2424
cmd.Usage = "CLI Tool to do CRUD like manipulation on YAML files"
25-
cmd.Version = "0.5.0"
25+
cmd.Version = "0.6.0"
2626
cmd.Commands = []cli.Command{
2727
{
2828
Name: "get",
@@ -92,9 +92,6 @@ func setParam(c *cli.Context) {
9292
if c.String("value") != "" {
9393
value = c.String("value")
9494
}
95-
if value == "" {
96-
//exitWithError(errors.New("No value provided"))
97-
}
9895

9996
var err error
10097
if c.String("key") != "" {

0 commit comments

Comments
 (0)