From 1b33c97bdd185ced83d67309ed36f53b1a03f468 Mon Sep 17 00:00:00 2001 From: Johan Brandhorst Date: Tue, 14 Apr 2020 11:19:50 +0100 Subject: [PATCH] Set Go 1.14 as required version --- README.md | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 60f05d8..38eb1ba 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Just some playing around with the experimental Go WebAssembly arch target. ## Requirements -Requires `go` >= 1.13.0. +Requires `go` >= 1.14.0. [TinyGo](https://github.com/tinygo-org/tinygo) examples require `docker`. ## Basic instructions diff --git a/go.mod b/go.mod index a863493..4d39069 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/johanbrandhorst/wasm-experiments -go 1.12 +go 1.14 require ( github.com/NYTimes/gziphandler v1.1.1