From cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= <stemmertech@gmail.com>
Date: Fri, 4 Oct 2019 20:55:37 +0100
Subject: [PATCH] Specify correct minimum go version in go.mod

---
 .travis.yml | 3 +++
 README.md   | 2 +-
 go.mod      | 2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 44fa5dc..d0dff3e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,6 +2,9 @@ language: go
 
 go:
   - tip
+  - "1.13.x"
+  - "1.12.x"
+  - "1.11.x"
   - "1.10.x"
   - "1.9.x"
   - "1.8.x"
diff --git a/README.md b/README.md
index 3bb1989..5b5f608 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ expect junit xml reports (e.g. [Jenkins](http://jenkins-ci.org)).
 
 ## Installation
 
-Go version 1.1 or higher is required. Install or update using the `go get`
+Go version 1.2 or higher is required. Install or update using the `go get`
 command:
 
 ```bash
diff --git a/go.mod b/go.mod
index da0063f..de52369 100644
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,3 @@
 module github.com/jstemmer/go-junit-report
 
-go 1.13
+go 1.2