Skip to content

Commit 2d834ee

Browse files
committed
Patch release 0.1.5
1 parent e7bc74f commit 2d834ee

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ curl -L https://bit.ly/cig-install | sudo bash
4848
##### Manual install
4949

5050
```bash
51-
curl -L https://github.com/stevenjack/cig/releases/download/v0.1.4/cig_`uname -s`_x86_64 > /usr/local/bin/cig
51+
curl -L https://github.com/stevenjack/cig/releases/download/v0.1.5/cig_`uname -s`_x86_64 > /usr/local/bin/cig
5252
chmod +x /usr/local/bin/cig
5353
```
5454

5555
### Windows
5656

5757
Download the following binary:
5858

59-
* [64bit](https://github.com/stevenjack/cig/releases/download/v0.1.4/cig_windows_x86_64.exe)
59+
* [64bit](https://github.com/stevenjack/cig/releases/download/v0.1.5/cig_windows_x86_64.exe)
6060

6161
Once you have the binary, run it via your cmd prompt:
6262

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.4
1+
0.1.5

cig.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/stevenjack/cig/output"
99
)
1010

11-
const version string = "0.1.4"
11+
const version string = "0.1.5"
1212

1313
func main() {
1414
var output_channel = make(chan output.Payload)

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22

3-
curl -L https://github.com/stevenjack/cig/releases/download/v0.1.4/cig_`uname -s`_x86_64 > /usr/local/bin/cig
3+
curl -L https://github.com/stevenjack/cig/releases/download/v0.1.5/cig_`uname -s`_x86_64 > /usr/local/bin/cig
44
chmod +x /usr/local/bin/cig

0 commit comments

Comments
 (0)