Skip to content

Commit

Permalink
Merge pull request #106 from hmrc/BDOG-BAU
Browse files Browse the repository at this point in the history
BDOG-3200 version 2.0.1
  • Loading branch information
Shnick authored Jul 18, 2024
2 parents 50a7670 + 1fed9c6 commit 3afdebc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3afdebc

Please sign in to comment.