diff --git a/README.md b/README.md index 34c04c7..2c2311d 100644 --- a/README.md +++ b/README.md @@ -28,24 +28,24 @@ If you'd prefer to carry out these steps manually, then follow these steps: **Linux Intel** ```shell -curl -L -O https://github.com/hmrc/sm2/releases/download/v2.0.0/sm2-2.0.0-linux-intel.zip && unzip sm2-2.0.0-linux-intel.zip && rm sm2-2.0.0-linux-intel.zip && chmod +x sm2 +curl -L -O https://github.com/hmrc/sm2/releases/download/v2.0.1/sm2-2.0.1-linux-intel.zip && unzip sm2-2.0.1-linux-intel.zip && rm sm2-2.0.1-linux-intel.zip && chmod +x sm2 ``` **Linux Arm64** ```shell -curl -L -O https://github.com/hmrc/sm2/releases/download/v2.0.0/sm2-2.0.0-linux-arm64.zip && unzip sm2-2.0.0-linux-arm64.zip && rm sm2-2.0.0-linux-arm64.zip && chmod +x sm2 +curl -L -O https://github.com/hmrc/sm2/releases/download/v2.0.1/sm2-2.0.1-linux-arm64.zip && unzip sm2-2.0.1-linux-arm64.zip && rm sm2-2.0.1-linux-arm64.zip && chmod +x sm2 ``` **OSX/Apple (latest M1/M2 cpus)** ```shell -curl -L -O https://github.com/hmrc/sm2/releases/download/v2.0.0/sm2-2.0.0-apple-arm64.zip && unzip sm2-2.0.0-apple-arm64.zip && rm sm2-2.0.0-apple-arm64.zip && chmod +x sm2 +curl -L -O https://github.com/hmrc/sm2/releases/download/v2.0.1/sm2-2.0.1-apple-arm64.zip && unzip sm2-2.0.1-apple-arm64.zip && rm sm2-2.0.1-apple-arm64.zip && chmod +x sm2 ``` **OSX/Apple (older Intel cpus)** ```shell -curl -L -O https://github.com/hmrc/sm2/releases/download/v2.0.0/sm2-2.0.0-apple-intel.zip && unzip sm2-2.0.0-apple-intel.zip && rm sm2-2.0.0-apple-intel.zip && chmod +x sm2 +curl -L -O https://github.com/hmrc/sm2/releases/download/v2.0.1/sm2-2.0.1-apple-intel.zip && unzip sm2-2.0.1-apple-intel.zip && rm sm2-2.0.1-apple-intel.zip && chmod +x sm2 ``` If everything has worked you should have an executable called `sm2`. @@ -230,7 +230,7 @@ Sometimes a service will fail to start up. To help determine why, service manage Before doing anything else, it’s worth running service-manager’s self-checks to ensure it is installed correctly. ```shell $ sm2 -diagnostic -version: 2.0.0 +version: 2.0.1 build: ef49b60 OS: OK (linux, amd64) JAVA: OK (11.0.17) diff --git a/install.sh b/install.sh index e549ca9..474c466 100755 --- a/install.sh +++ b/install.sh @@ -4,7 +4,7 @@ IFS=$'\n\t' TARGET_OS="linux" TARGET_ARCH="intel" -TARGET_VERSION="2.0.0" +TARGET_VERSION="2.0.1" if [[ "$(uname)" == "Darwin" ]]; then TARGET_OS="apple" diff --git a/makefile b/makefile index 400d932..324ea15 100644 --- a/makefile +++ b/makefile @@ -8,7 +8,7 @@ ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) BINARY := sm2 -VERSION := 2.0.0 +VERSION := 2.0.1 BUILD := `git rev-parse HEAD` # Setup linker flags option for build that interoperate with variable names in src code