diff --git a/Makefile b/Makefile index 0b94392..57e5f7f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .EXPORT_ALL_VARIABLES: BUILD_METADATA=+$(shell git rev-parse --short HEAD) PRERELEASE= -SEMVER=v0.0.4 +SEMVER=v0.1.0 VERSION=${SEMVER}${PRERELEASE}${BUILD_METADATA} # Builds target for whatever OS this is called from. diff --git a/README.md b/README.md index a581505..f86f6d1 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,13 @@ To install goenv, follow the steps below. Older releases are in the [Releases pa ```bash # Step 1: Linux Only -curl -sSL https://github.com/drewgonzales360/goenv/releases/download/v0.0.4/goenv-linux-amd64-v0.0.4.tar.gz -o /tmp/goenv-v0.0.4.tar.gz +curl -sSL https://github.com/drewgonzales360/goenv/releases/download/v0.1.0/goenv-linux-amd64-v0.1.0.tar.gz -o /tmp/goenv-v0.1.0.tar.gz # Step 1: Mac Only (Intel) -curl -sSL https://github.com/drewgonzales360/goenv/releases/download/v0.0.4/goenv-darwin-amd64-v0.0.4.tar.gz -o /tmp/goenv-v0.0.4.tar.gz +curl -sSL https://github.com/drewgonzales360/goenv/releases/download/v0.1.0/goenv-darwin-amd64-v0.1.0.tar.gz -o /tmp/goenv-v0.1.0.tar.gz # Step 2: Extract and Install Go -tar -xzvf /tmp/goenv-v0.0.4.tar.gz -C /tmp +tar -xzvf /tmp/goenv-v0.1.0.tar.gz -C /tmp mv /tmp/goenv /usr/local/bin # Step 3: Add /usr/local/go/bin (or $GOENV_ROOT_DIR/bin) to PATH