Skip to content

Commit 1cf9a9f

Browse files
wuriyantowuriyanto
wuriyanto
authored and
wuriyanto
committedSep 4, 2024
update version to 2.0.4
1 parent 908d391 commit 1cf9a9f

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed
 

‎README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -34,40 +34,40 @@ choose the binary from the release according to your platform, for example for t
3434
#### Download binary
3535

3636
```shell
37-
$ wget https://github.com/telkomdev/tob/releases/download/2.0.3/tob-2.0.3.linux-amd64.tar.gz
37+
$ wget https://github.com/telkomdev/tob/releases/download/2.0.4/tob-2.0.4.linux-amd64.tar.gz
3838
```
3939

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

42-
Download `sha256sum.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/2.0.3/sha256sums.txt
42+
Download `sha256sum.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/2.0.4/sha256sums.txt
4343

4444
```shell
45-
$ wget https://github.com/telkomdev/tob/releases/download/2.0.3/sha256sums.txt
45+
$ wget https://github.com/telkomdev/tob/releases/download/2.0.4/sha256sums.txt
4646
```
4747

4848
#### Verify SHA256 Checksum
4949

5050
Linux
5151

5252
```shell
53-
$ sha256sum tob-2.0.3.linux-amd64.tar.gz -c sha256sums.txt
54-
tob-2.0.3.linux-amd64.tar.gz: OK
53+
$ sha256sum tob-2.0.4.linux-amd64.tar.gz -c sha256sums.txt
54+
tob-2.0.4.linux-amd64.tar.gz: OK
5555
```
5656

5757
Mac OSX
5858

5959
```shell
60-
$ shasum -a 256 tob-2.0.3.darwin-amd64.tar.gz -c sha256sums.txt
61-
tob-2.0.3.darwin-amd64.tar.gz: OK
60+
$ shasum -a 256 tob-2.0.4.darwin-amd64.tar.gz -c sha256sums.txt
61+
tob-2.0.4.darwin-amd64.tar.gz: OK
6262
```
6363

64-
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`.
64+
You should be able to see that the checksum value for the file is valid, `tob-2.0.4.linux-amd64.tar.gz: OK` and `tob-2.0.4.darwin-amd64.tar.gz: OK`.
6565
Indicates the file is not damaged, not modified and safe to use.
6666

6767
#### Extract
6868

6969
```shell
70-
$ tar -xvzf tob-2.0.3.linux-amd64.tar.gz
70+
$ tar -xvzf tob-2.0.4.linux-amd64.tar.gz
7171
```
7272

7373
#### Run
@@ -161,15 +161,15 @@ So we need to deploy an `agent`, in this case `tob-http-agent` to the Server Com
161161
#### Download `tob-http-agent` binary
162162

163163
```shell
164-
$ wget https://github.com/telkomdev/tob/releases/download/2.0.3/tob-http-agent-1.1.0.linux-amd64.tar.gz
164+
$ wget https://github.com/telkomdev/tob/releases/download/2.0.4/tob-http-agent-1.1.0.linux-amd64.tar.gz
165165
```
166166

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

169-
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
169+
Download `tob-http-agent-sha256sums.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/2.0.4/tob-http-agent-sha256sums.txt
170170

171171
```shell
172-
$ wget https://github.com/telkomdev/tob/releases/download/2.0.3/tob-http-agent-sha256sums.txt
172+
$ wget https://github.com/telkomdev/tob/releases/download/2.0.4/tob-http-agent-sha256sums.txt
173173
```
174174

175175
#### Verify `tob-http-agent` SHA256 Checksum

‎config_example.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,5 +194,5 @@
194194
"dashboardUsername": "tob",
195195
"dashboardPassword": "5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5",
196196

197-
"version": "2.0.3"
197+
"version": "2.0.4"
198198
}

‎tob.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package tob
33
const (
44
// Version number
55

6-
Version = "2.0.3"
6+
Version = "2.0.4"
77

88
// OK service status
99
OK = "OK"

0 commit comments

Comments
 (0)