Skip to content

Commit

Permalink
release 10
Browse files Browse the repository at this point in the history
  • Loading branch information
joshfinnie committed May 27, 2021
1 parent 641af0d commit d6363b3
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,22 +96,22 @@ Currently gorson ships binaries for OS X and Linux 64bit systems. You can downlo
## OS X
```bash
wget https://github.com/pbs/gorson/releases/download/9/gorson-9-darwin-amd64
wget https://github.com/pbs/gorson/releases/download/10/gorson-10-darwin-amd64
```
## Linux
Download the binary
```bash
wget https://github.com/pbs/gorson/releases/download/9/gorson-9-linux-amd64
wget https://github.com/pbs/gorson/releases/download/10/gorson-10-linux-amd64
```
Move the binary to an installation path, make it executable, and add to path
```bash
mkdir -p /opt/gorson/bin
mv gorson-9-linux-amd64 /opt/gorson/bin/gorson
mv gorson-10-linux-amd64 /opt/gorson/bin/gorson
chmod +x /opt/gorson/bin/gorson
export PATH="$PATH:/opt/gorson/bin"
```
Expand All @@ -135,13 +135,13 @@ asdf list-all gorson
Install a particular version
```bash
asdf install gorson 9
asdf install gorson 10
```
Make a particular version your default
```bash
asdf global gorson 9
asdf global gorson 10
```
# 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 = "9"
const Version = "10"

0 comments on commit d6363b3

Please sign in to comment.