Skip to content

Commit

Permalink
Release v0.1.1 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
olimpias authored Jul 5, 2020
1 parent 2be7c72 commit c5d327f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ be permission issues while removing and replacing the folders/files. [Check Trou
```shell script
#Example for amd64 arch
# Linux Example (assumes ~/bin is in PATH).
curl -o gvm.tar.gz -O https://github.com/olimpias/gvm/releases/download/v0.1.0/gvm.linux.amd64.tar.gz
curl -o gvm.tar.gz -OL https://github.com/olimpias/gvm/releases/download/v0.1.0/gvm.linux.amd64.tar.gz
tar -C ~/bin -xzf gvm.tar.gz
chmod +x ~/bin/gvm
gvm use 1.14.4
Expand All @@ -27,7 +27,7 @@ Supported Archs For Linux : `386`, `amd64`, `arm`, `arm64`, `mips`, `mipsle`, `m
**MacOS**:
```shell script
# Example for amd64 arch
curl -o gvm.tar.gz -O https://github.com/olimpias/gvm/releases/download/v0.1.0/gvm.darwin.amd64.tar.gz
curl -o gvm.tar.gz -OL https://github.com/olimpias/gvm/releases/download/v0.1.0/gvm.darwin.amd64.tar.gz
tar -C /usr/local/bin -xzf gvm.tar.gz
chmod +x /usr/local/bin/gvm
gvm use 1.14.4
Expand All @@ -38,7 +38,8 @@ Supported Archs For MacOs : `amd64`
**Windows**:
```shell script
# Example for amd64 arch
curl -o gvm.zip -O https://github.com/olimpias/gvm/releases/download/v0.1.0/gvm.windows.amd64.exe.zip
# Expected to use bash terminal
curl -o gvm.zip -OL https://github.com/olimpias/gvm/releases/download/v0.1.0/gvm.windows.amd64.exe.zip
unzip gvm.zip
gvm use 1.14.4
```
Expand All @@ -49,7 +50,7 @@ Supported Archs For MacOs : `386`, `amd64`
```shell script
#Example for amd64 arch
# Freebsd Example (assumes ~/bin is in PATH).
curl -o gvm.tar.gz -O https://github.com/olimpias/gvm/releases/download/v0.1.0/gvm.freebsd.amd64.tar.gz
curl -o gvm.tar.gz -OL https://github.com/olimpias/gvm/releases/download/v0.1.0/gvm.freebsd.amd64.tar.gz
tar -C ~/bin -xzf gvm.tar.gz
chmod +x ~/bin/gvm
gvm use 1.14.4
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

const (
major = 0
minor = 0
minor = 1
patch = 1
)

Expand Down

0 comments on commit c5d327f

Please sign in to comment.