Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump go minimum required version to 1.15 #1477

Merged
merged 2 commits into from
Feb 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: 1.15


# Source: https://github.com/actions/cache/blob/main/examples.md#go---modules
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: 1.15

- name: Create coverage file
# Because of https://github.com/golang/go/issues/27333 this seem to "fail" even though nothing is wrong, so ignore the failure
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Kaspa is an attempt at a proof-of-work cryptocurrency with instant confirmations

## Requirements

Go 1.14 or later.
Go 1.15 or later.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion cmd/kaspactl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kaspactl is an RPC client for kaspad

## Requirements

Go 1.14 or later.
Go 1.15 or later.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion cmd/kaspactl/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -- multistage docker build: stage #1: build stage
FROM golang:1.14-alpine AS build
FROM golang:1.15-alpine AS build

RUN mkdir -p /go/src/github.com/kaspanet/kaspad

Expand Down
2 changes: 1 addition & 1 deletion cmd/kaspaminer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Kaspaminer is a CPU-based miner for kaspad

## Requirements

Go 1.14 or later.
Go 1.15 or later.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion cmd/kaspaminer/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -- multistage docker build: stage #1: build stage
FROM golang:1.14-alpine AS build
FROM golang:1.15-alpine AS build

RUN mkdir -p /go/src/github.com/kaspanet/kaspad

Expand Down
2 changes: 1 addition & 1 deletion cmd/wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ It is capable of generating wallet key-pairs, printing a wallet's current balanc

## Requirements

Go 1.14 or later.
Go 1.15 or later.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -- multistage docker build: stage #1: build stage
FROM golang:1.14-alpine AS build
FROM golang:1.15-alpine AS build

RUN mkdir -p /go/src/github.com/kaspanet/kaspad

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/kaspanet/kaspad

go 1.14
go 1.15

require (
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd
Expand Down