Browse Source

bump go version (#5070)

## Description

since 0.34 is breaking we should bump the go version to 1.14

Closes: #XXX
pull/5071/head
Marko 4 years ago
committed by GitHub
parent
commit
66003d7bd1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions
  1. +2
    -2
      README.md
  2. +2
    -2
      Vagrantfile
  3. +1
    -1
      docs/guides/go.md
  4. +1
    -1
      go.mod
  5. +1
    -1
      test/docker/Dockerfile

+ 2
- 2
README.md View File

@ -8,7 +8,7 @@ Or [Blockchain](<https://en.wikipedia.org/wiki/Blockchain_(database)>), for shor
[![version](https://img.shields.io/github/tag/tendermint/tendermint.svg)](https://github.com/tendermint/tendermint/releases/latest)
[![API Reference](https://camo.githubusercontent.com/915b7be44ada53c290eb157634330494ebe3e30a/68747470733a2f2f676f646f632e6f72672f6769746875622e636f6d2f676f6c616e672f6764646f3f7374617475732e737667)](https://pkg.go.dev/github.com/tendermint/tendermint)
[![Go version](https://img.shields.io/badge/go-1.13-blue.svg)](https://github.com/moovweb/gvm)
[![Go version](https://img.shields.io/badge/go-1.14-blue.svg)](https://github.com/moovweb/gvm)
[![Discord chat](https://img.shields.io/discord/669268347736686612.svg)](https://discord.gg/AzefAFd)
[![license](https://img.shields.io/github/license/tendermint/tendermint.svg)](https://github.com/tendermint/tendermint/blob/master/LICENSE)
[![](https://tokei.rs/b1/github/tendermint/tendermint?category=lines)](https://github.com/tendermint/tendermint)
@ -50,7 +50,7 @@ For examples of the kinds of bugs we're looking for, see [SECURITY.md](SECURITY.
| Requirement | Notes |
| ----------- | ---------------- |
| Go version | Go1.13 or higher |
| Go version | Go1.14 or higher |
## Documentation


+ 2
- 2
Vagrantfile View File

@ -29,8 +29,8 @@ Vagrant.configure("2") do |config|
usermod -a -G docker vagrant
# install go
wget -q https://dl.google.com/go/go1.13.linux-amd64.tar.gz
tar -xvf go1.13.linux-amd64.tar.gz
wget -q https://dl.google.com/go/go1.14.linux-amd64.tar.gz
tar -xvf go1.14.linux-amd64.tar.gz
mv go /usr/local
rm -f go1.13.linux-amd64.tar.gz


+ 1
- 1
docs/guides/go.md View File

@ -43,7 +43,7 @@ Verify that you have the latest version of Go installed:
```bash
$ go version
go version go1.13.1 darwin/amd64
go version go1.14.x darwin/amd64
```
Make sure you have `$GOPATH` environment variable set:


+ 1
- 1
go.mod View File

@ -1,6 +1,6 @@
module github.com/tendermint/tendermint
go 1.13
go 1.14
require (
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d


+ 1
- 1
test/docker/Dockerfile View File

@ -1,4 +1,4 @@
FROM golang:1.13
FROM golang:1.14
# Grab deps (jq, hexdump, xxd, killall)
RUN apt-get update && \


Loading…
Cancel
Save