Skip to content

Commit

Permalink
release 11
Browse files Browse the repository at this point in the history
  • Loading branch information
yhakbar committed Jan 28, 2022
1 parent 98f7655 commit 812f7c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ Currently gorson ships binaries for MacOS and Linux 64bit systems. You can downl
## MacOS
```bash
wget https://github.com/pbs/gorson/releases/download/10/gorson-10-darwin-amd64
wget https://github.com/pbs/gorson/releases/download/11/gorson-11-darwin-amd64
```
## Linux
Download the binary
```bash
wget https://github.com/pbs/gorson/releases/download/10/gorson-10-linux-amd64
wget https://github.com/pbs/gorson/releases/download/11/gorson-11-linux-amd64
```
## ARM
Expand All @@ -117,7 +117,7 @@ Move the binary to an installation path, make it executable, and add to path
```bash
mkdir -p /opt/gorson/bin
mv gorson-10-linux-amd64 /opt/gorson/bin/gorson
mv gorson-11-linux-amd64 /opt/gorson/bin/gorson
chmod +x /opt/gorson/bin/gorson
export PATH="$PATH:/opt/gorson/bin"
```
Expand All @@ -141,13 +141,13 @@ asdf list-all gorson
Install a particular version
```bash
asdf install gorson 10
asdf install gorson 11
```
Make a particular version your default
```bash
asdf global gorson 10
asdf global gorson 11
```
# Notes
Expand Down
2 changes: 1 addition & 1 deletion internal/gorson/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// Version is current gorson version
const Version = "10"
const Version = "11"

0 comments on commit 812f7c6

Please sign in to comment.