Skip to content

Commit 2dec208

Browse files
committed
upgrade version to 2.0.7
1 parent 597ffc6 commit 2dec208

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

README.md

Lines changed: 12 additions & 12 deletions
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.6/tob-2.0.6.linux-amd64.tar.gz
37+
$ wget https://github.com/telkomdev/tob/releases/download/2.0.7/tob-2.0.7.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.6/sha256sums.txt
42+
Download `sha256sum.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/2.0.7/sha256sums.txt
4343

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

4848
#### Verify SHA256 Checksum
4949

5050
Linux
5151

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

5757
Mac OSX
5858

5959
```shell
60-
$ shasum -a 256 tob-2.0.6.darwin-amd64.tar.gz -c sha256sums.txt
61-
tob-2.0.6.darwin-amd64.tar.gz: OK
60+
$ shasum -a 256 tob-2.0.7.darwin-amd64.tar.gz -c sha256sums.txt
61+
tob-2.0.7.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.6.linux-amd64.tar.gz: OK` and `tob-2.0.6.darwin-amd64.tar.gz: OK`.
64+
You should be able to see that the checksum value for the file is valid, `tob-2.0.7.linux-amd64.tar.gz: OK` and `tob-2.0.7.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.6.linux-amd64.tar.gz
70+
$ tar -xvzf tob-2.0.7.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.6/tob-http-agent-1.1.0.linux-amd64.tar.gz
164+
$ wget https://github.com/telkomdev/tob/releases/download/2.0.7/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.6/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.7/tob-http-agent-sha256sums.txt
170170

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

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

config_example.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,5 +873,5 @@
873873
"dashboardPassword": "5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5",
874874
"dashboardWebhookToken": "tob-token-12345",
875875

876-
"version": "2.0.6"
876+
"version": "2.0.7"
877877
}

tob.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@ package tob
33
const (
44
// Version number
55

6-
Version = "2.0.6"
6+
Version = "2.0.7"
77

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

1111
// NotOk service status
1212
NotOk = "NOT_OK"
13+
14+
// TimeZoneJakarta timezone
15+
TimeZoneJakarta = "Asia/Jakarta"
1316
)

0 commit comments

Comments
 (0)