Skip to content

Commit

Permalink
update version to 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
wuriyanto authored and wuriyanto committed Sep 4, 2024
1 parent 9128cf6 commit 34ada34
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 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/2.0.2/tob-2.0.2.linux-amd64.tar.gz
$ wget https://github.com/telkomdev/tob/releases/download/2.0.3/tob-2.0.3.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/2.0.2/sha256sums.txt
Download `sha256sum.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/2.0.3/sha256sums.txt

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

#### Verify SHA256 Checksum

Linux

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

Mac OSX

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

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

#### Extract

```shell
$ tar -xvzf tob-2.0.2.linux-amd64.tar.gz
$ tar -xvzf tob-2.0.3.linux-amd64.tar.gz
```

#### Run
Expand Down Expand Up @@ -161,15 +161,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/2.0.2/tob-http-agent-1.1.0.linux-amd64.tar.gz
$ wget https://github.com/telkomdev/tob/releases/download/2.0.3/tob-http-agent-1.1.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/2.0.2/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/2.0.3/tob-http-agent-sha256sums.txt

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

#### Verify `tob-http-agent` SHA256 Checksum
Expand Down
2 changes: 1 addition & 1 deletion config_example.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,5 +194,5 @@
"dashboardUsername": "tob",
"dashboardPassword": "5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5",

"version": "2.0.2"
"version": "2.0.3"
}
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 = "2.0.2"
Version = "2.0.3"

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

0 comments on commit 34ada34

Please sign in to comment.