From f88ae49849fcc3136d670b42c37d2bad68ee5598 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niko=20K=C3=B6ser?= Date: Fri, 27 Aug 2021 15:54:50 +0200 Subject: [PATCH 1/3] docs(readme): add Go 1.17+ install command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f8a38c3..280cd6f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ But seriously, https://github.com/reorx/httpstat is the new hotness, and this is ## Installation `httpstat` requires Go 1.13 or later. ``` -$ go get github.com/davecheney/httpstat +$ go install github.com/davecheney/httpstat@latest ``` ## Usage ``` From 445b4bd7b3e3d7c97030ac42dbb66572d527da97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niko=20K=C3=B6ser?= Date: Fri, 27 Aug 2021 16:07:51 +0200 Subject: [PATCH 2/3] docs(readme): clearify install instructions for different versions --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 280cd6f..03d0793 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,14 @@ But seriously, https://github.com/reorx/httpstat is the new hotness, and this is ## Installation `httpstat` requires Go 1.13 or later. ``` +$ go get github.com/davecheney/httpstat +``` + +For Go 1.17+ use: +``` $ go install github.com/davecheney/httpstat@latest -``` +``` + ## Usage ``` $ httpstat https://example.com/ From 7915452b7baf32352e7d40661319e9fd00243ac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niko=20K=C3=B6ser?= Date: Fri, 27 Aug 2021 23:00:38 +0200 Subject: [PATCH 3/3] docs(readme): remove old install command --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 03d0793..3dd7c42 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,6 @@ But seriously, https://github.com/reorx/httpstat is the new hotness, and this is ## Installation `httpstat` requires Go 1.13 or later. ``` -$ go get github.com/davecheney/httpstat -``` - -For Go 1.17+ use: -``` $ go install github.com/davecheney/httpstat@latest ```