Skip to content

Commit 81a9f47

Browse files
committed
upgrade version to 1.4.1
1 parent 2429fcf commit 81a9f47

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
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/1.4.0/tob-1.4.0.linux-amd64.tar.gz
37+
$ wget https://github.com/telkomdev/tob/releases/download/1.4.1/tob-1.4.1.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/1.4.0/sha256sums.txt
42+
Download `sha256sum.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/1.4.1/sha256sums.txt
4343

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

4848
#### Verify SHA256 Checksum
4949

5050
Linux
5151

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

5757
Mac OSX
5858

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

64-
You should be able to see that the checksum value for the file is valid, `tob-1.4.0.linux-amd64.tar.gz: OK` and `tob-1.4.0.darwin-amd64.tar.gz: OK`.
64+
You should be able to see that the checksum value for the file is valid, `tob-1.4.1.linux-amd64.tar.gz: OK` and `tob-1.4.1.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-1.4.0.linux-amd64.tar.gz
70+
$ tar -xvzf tob-1.4.1.linux-amd64.tar.gz
7171
```
7272

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

162162
```shell
163-
$ wget https://github.com/telkomdev/tob/releases/download/1.4.0/tob-http-agent-1.0.0.linux-amd64.tar.gz
163+
$ wget https://github.com/telkomdev/tob/releases/download/1.4.1/tob-http-agent-1.0.0.linux-amd64.tar.gz
164164
```
165165

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

168-
Download `tob-http-agent-sha256sums.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/1.4.0/tob-http-agent-sha256sums.txt
168+
Download `tob-http-agent-sha256sums.txt` according to the binary version you downloaded https://github.com/telkomdev/tob/releases/download/1.4.1/tob-http-agent-sha256sums.txt
169169

170170
```shell
171-
$ wget https://github.com/telkomdev/tob/releases/download/1.4.0/tob-http-agent-sha256sums.txt
171+
$ wget https://github.com/telkomdev/tob/releases/download/1.4.1/tob-http-agent-sha256sums.txt
172172
```
173173

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

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 = "1.4.0"
6+
Version = "1.4.1"
77

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

0 commit comments

Comments
 (0)