From 34ada342471fff7b3ac98fc00be78009d01670ed Mon Sep 17 00:00:00 2001 From: wuriyanto Date: Thu, 5 Sep 2024 00:30:35 +0700 Subject: [PATCH] update version to 2.0.3 --- README.md | 24 ++++++++++++------------ config_example.json | 2 +- tob.go | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 8eb3080..5b4a378 100644 --- a/README.md +++ b/README.md @@ -34,15 +34,15 @@ 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 @@ -50,24 +50,24 @@ $ wget https://github.com/telkomdev/tob/releases/download/2.0.2/sha256sums.txt 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 @@ -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 diff --git a/config_example.json b/config_example.json index 595a2b8..adbc704 100644 --- a/config_example.json +++ b/config_example.json @@ -194,5 +194,5 @@ "dashboardUsername": "tob", "dashboardPassword": "5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5", - "version": "2.0.2" + "version": "2.0.3" } diff --git a/tob.go b/tob.go index 3ef00b6..e366272 100644 --- a/tob.go +++ b/tob.go @@ -3,7 +3,7 @@ package tob const ( // Version number - Version = "2.0.2" + Version = "2.0.3" // OK service status OK = "OK"