From 812f7c6fb8ea21d9f833cca8819219fab8e7d040 Mon Sep 17 00:00:00 2001 From: Yousif Akbar Date: Fri, 28 Jan 2022 13:25:38 -0500 Subject: [PATCH] release 11 --- README.md | 10 +++++----- internal/gorson/version/version.go | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0dfc167..9cc6a47 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ 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 @@ -104,7 +104,7 @@ wget https://github.com/pbs/gorson/releases/download/10/gorson-10-darwin-amd64 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 @@ -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" ``` @@ -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 diff --git a/internal/gorson/version/version.go b/internal/gorson/version/version.go index a19ac03..f3cd64f 100644 --- a/internal/gorson/version/version.go +++ b/internal/gorson/version/version.go @@ -1,4 +1,4 @@ package version // Version is current gorson version -const Version = "10" +const Version = "11"