Skip to content

Commit

Permalink
upgrade version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wuriyanto48 committed Mar 15, 2023
1 parent 3434b7d commit 1e0147d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,40 +34,40 @@ choose the binary from the release according to your platform, for example for t
#### Download binary

```shell
$ wget https://github.com/telkomdev/tob/releases/download/1.3.0/tob-1.3.0.linux-amd64.tar.gz
$ wget https://github.com/telkomdev/tob/releases/download/1.3.1/tob-1.3.1.linux-amd64.tar.gz
```

#### Important !!!, always check the SHA256 Checksum before using it

Download `sha256sum.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/1.3.0/sha256sums.txt
Download `sha256sum.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/1.3.1/sha256sums.txt

```shell
$ wget https://github.com/telkomdev/tob/releases/download/1.3.0/sha256sums.txt
$ wget https://github.com/telkomdev/tob/releases/download/1.3.1/sha256sums.txt
```

#### Verify SHA256 Checksum

Linux

```shell
$ sha256sum tob-1.3.0.linux-amd64.tar.gz -c sha256sums.txt
tob-1.3.0.linux-amd64.tar.gz: OK
$ sha256sum tob-1.3.1.linux-amd64.tar.gz -c sha256sums.txt
tob-1.3.1.linux-amd64.tar.gz: OK
```

Mac OSX

```shell
$ shasum -a 256 tob-1.3.0.darwin-amd64.tar.gz -c sha256sums.txt
tob-1.3.0.darwin-amd64.tar.gz: OK
$ shasum -a 256 tob-1.3.1.darwin-amd64.tar.gz -c sha256sums.txt
tob-1.3.1.darwin-amd64.tar.gz: OK
```

You should be able to see that the checksum value for the file is valid, `tob-1.3.0.linux-amd64.tar.gz: OK` and `tob-1.3.0.darwin-amd64.tar.gz: OK`.
You should be able to see that the checksum value for the file is valid, `tob-1.3.1.linux-amd64.tar.gz: OK` and `tob-1.3.1.darwin-amd64.tar.gz: OK`.
Indicates the file is not damaged, not modified and safe to use.

#### Extract

```shell
$ tar -xvzf tob-1.3.0.linux-amd64.tar.gz
$ tar -xvzf tob-1.3.1.linux-amd64.tar.gz
```

#### Run
Expand Down Expand Up @@ -160,15 +160,15 @@ So we need to deploy an `agent`, in this case `tob-http-agent` to the Server Com
#### Download `tob-http-agent` binary

```shell
$ wget https://github.com/telkomdev/tob/releases/download/1.3.0/tob-http-agent-1.0.0.linux-amd64.tar.gz
$ wget https://github.com/telkomdev/tob/releases/download/1.3.1/tob-http-agent-1.0.0.linux-amd64.tar.gz
```

#### Important !!!, always check the SHA256 Checksum before using it

Download `tob-http-agent-sha256sums.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/1.3.0/tob-http-agent-sha256sums.txt
Download `tob-http-agent-sha256sums.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/1.3.1/tob-http-agent-sha256sums.txt

```shell
$ wget https://github.com/telkomdev/tob/releases/download/1.3.0/tob-http-agent-sha256sums.txt
$ wget https://github.com/telkomdev/tob/releases/download/1.3.1/tob-http-agent-sha256sums.txt
```

#### Verify `tob-http-agent` SHA256 Checksum
Expand Down
2 changes: 1 addition & 1 deletion tob.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package tob
const (
// Version number

Version = "1.3.0"
Version = "1.3.1"

// OK service status
OK = "OK"
Expand Down

0 comments on commit 1e0147d

Please sign in to comment.