build+docs: bump to golang 1.11

This commit is contained in:
Olaoluwa Osuntokun 2018-08-24 18:27:53 -07:00
parent e9809c715e
commit 233246714d
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
language: go
go:
- "1.9.4"
- "1.10"
- "1.11"
sudo: required
install:
- sudo add-apt-repository -y ppa:bitcoin/bitcoin -y

View File

@ -7,14 +7,14 @@
* **Go:** `lnd` is written in Go. To install, run one of the following commands:
**Note**: The minimum version of Go supported is Go 1.9. We recommend that
**Note**: The minimum version of Go supported is Go 1.10. We recommend that
users use the latest version of Go, which at the time of writing is
[`1.10`](https://blog.golang.org/go1.10).
[`1.11`](https://blog.golang.org/go1.11).
On Linux:
```
sudo apt-get install golang-1.10-go
sudo apt-get install golang-1.11-go
```
> Note that golang-1.10-go puts binaries in /usr/lib/go-1.10/bin. If you want them on your PATH, you need to make that change yourself. Alternatively, you can run:
```