From 699532f2564aab1a49389aeb8f7c8eda7826972d Mon Sep 17 00:00:00 2001 From: Jordan Wright Date: Wed, 11 Dec 2019 20:06:04 -0600 Subject: [PATCH] Remove support for Go 1.9. It appears that the MySQL driver dropped support for Go 1.9. Until we have vendoring in place (will happen soon!) we must follow suit and drop support for Go v1.9. This still allows us to support the latest three versions of Go. --- .travis.yml | 1 - README.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 80fbccd5..96047fb4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: go sudo: false go: - - 1.9 - "1.10" - 1.11 - 1.12 diff --git a/README.md b/README.md index a1575dc1..acfd240c 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Gophish: Open-Source Phishing Toolkit Installation of Gophish is dead-simple - just download and extract the zip containing the [release for your system](https://github.com/gophish/gophish/releases/), and run the binary. Gophish has binary releases for Windows, Mac, and Linux platforms. ### Building From Source -**If you are building from source, please note that Gophish requires Go v1.9 or above!** +**If you are building from source, please note that Gophish requires Go v1.10 or above!** To build Gophish from source, simply run ```go get github.com/gophish/gophish``` and ```cd``` into the project source directory. Then, run ```go build```. After this, you should have a binary called ```gophish``` in the current directory.