From 63881dce7a4472a6b87cd25f0da34e37ee354baf Mon Sep 17 00:00:00 2001 From: Marcelo Xavier Date: Mon, 21 Mar 2022 11:41:07 +0100 Subject: [PATCH 1/2] Update installation instructions for go 1.18 --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c954aa89..486dd89c 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,10 @@ To install the library and command line program, use the following: ```bash go get -v github.com/rubenv/sql-migrate/... ``` +For Go version from 1.18 use: +```bash +go install github.com/rubenv/sql-migrate/...@latest +``` ## Usage From 97780ff925e7d6c523949dfa8daa31ae5b79061f Mon Sep 17 00:00:00 2001 From: Marcelo Xavier Date: Mon, 21 Mar 2022 11:42:24 +0100 Subject: [PATCH 2/2] update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 486dd89c..56585233 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ To install the library and command line program, use the following: ```bash go get -v github.com/rubenv/sql-migrate/... ``` -For Go version from 1.18 use: +For Go version from 1.18, use: ```bash go install github.com/rubenv/sql-migrate/...@latest ```