From faeba6b18f0fd4e83d2d8b79f59d8007cc6abab3 Mon Sep 17 00:00:00 2001 From: Shwetha Radhakrishna Date: Thu, 9 Sep 2021 12:48:42 -0500 Subject: [PATCH] chore: add support for 1.16 (#438) * chore: add support for 1.16 * update readme --- .travis.yml | 1 + Dockerfile | 1 + README.md | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e2f01a0a..87a7c32c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ language: go env: - version=1.14 - version=1.15 +- version=1.16 script: - if [[ "$TRAVIS_BRANCH" == "main" || "$TRAVIS_BRANCH" == "travis" ]] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo "${DOCKER_PASSWORD}" | docker login -u "${DOCKER_USERNAME}" --password-stdin; diff --git a/Dockerfile b/Dockerfile index 221541e1..07895cfb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ ARG version=latest FROM golang:$version ENV GODEBUG 'x509ignoreCN=0' +ENV GO111MODULE 'off' COPY prism/prism/nginx/cert.crt /usr/local/share/ca-certificates/cert.crt RUN update-ca-certificates diff --git a/README.md b/README.md index def075a2..c8101ac1 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ We appreciate your continued support, thank you! ## Prerequisites -- Go version 1.7 +- Go version 1.14, 1.15 or 1.16 - The Twilio SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-go), to send up to 40,000 emails for the first 30 days, then send 100 emails/day free forever or check out [our pricing](https://sendgrid.com/pricing?source=sendgrid-go). ## Setup Environment Variables