Skip to content

Commit b3b8878

Browse files
committed
Patch release 0.1.2
1 parent d6550a9 commit b3b8878

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

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

3838
```bash
39-
curl -L https://github.com/stevenjack/cig/releases/download/v0.1.1/cig_`uname -s`_x86_64 > /usr/local/bin/cig
39+
curl -L https://github.com/stevenjack/cig/releases/download/v0.1.2/cig_`uname -s`_x86_64 > /usr/local/bin/cig
4040
chmod +x /usr/local/bin/cig
4141
```
4242

4343
### Windows
4444

4545
Download the following binary:
4646

47-
* [64bit](https://github.com/stevenjack/cig/releases/download/v0.1.1/cig_windows_amd64.exe)
47+
* [64bit](https://github.com/stevenjack/cig/releases/download/v0.1.2/cig_windows_amd64.exe)
4848

4949
Once you have the binary, run it via your cmd prompt:
5050

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.1"
11+
const version string = "0.1.2"
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.1/cig_`uname -s`_x86_64 > /usr/local/bin/cig
3+
curl -L https://github.com/stevenjack/cig/releases/download/v0.1.2/cig_`uname -s`_x86_64 > /usr/local/bin/cig
44
chmod +x /usr/local/bin/cig

0 commit comments

Comments
 (0)