@cryptotaxi247 / kubo / commits / c2603538f

docs: Require go 1.8

License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com>

Łukasz Magiera committed Jul 6, 2017 at 17:10 UTC c2603538feb1d960d1f672a4322f62daa98ff2bd
4 files changed +7 -7
README.md
+2 -2
@@ -103,7 +103,7 @@ With snap, in any of the [supported Linux distributions](https://snapcraft.io/do
103
104 #### Install Go
105
106 -The build process for ipfs requires Go 1.7 or higher. If you don't have it: [Download Go 1.7+](https://golang.org/dl/).
106 +The build process for ipfs requires Go 1.8 or higher. If you don't have it: [Download Go 1.8+](https://golang.org/dl/).
107
108
109 You'll need to add Go's bin directories to your `$PATH` environment variable e.g., by adding these lines to your `/etc/profile` (for a system-wide installation) or `$HOME/.profile`:
@@ -147,7 +147,7 @@ mismatched APIs.
147 * Also, [instructions for OpenBSD](docs/openbsd.md).
148 * `git` is required in order for `go get` to fetch all dependencies.
149 * Package managers often contain out-of-date `golang` packages.
150 - Ensure that `go version` reports at least 1.7. See above for how to install go.
150 + Ensure that `go version` reports at least 1.8. See above for how to install go.
151 * If you are interested in development, please install the development
152 dependencies as well.
153 * *WARNING: Older versions of OSX FUSE (for Mac OS X) can cause kernel panics when mounting!*
bin/Rules.mk
+3 -3
@@ -1,9 +1,9 @@
1 include mk/header.mk
2
3 -dist_root_$(d)=/ipfs/QmNjXP6N98fYT1i7abgeBHmdR5WoeBeik4DtGiX9iFWK31
3 +dist_root_$(d)=/ipfs/QmR27Do9gqx9VmuQTEX1UGXETSWYJTQzPzxS5FNUnySCv1
4
5 -$(d)/gx: $(d)/gx-v0.11.0
6 -$(d)/gx-go: $(d)/gx-go-v1.4.0
5 +$(d)/gx: $(d)/gx-v0.12.0
6 +$(d)/gx-go: $(d)/gx-go-v1.5.0
7
8 TGTS_$(d) := $(d)/gx $(d)/gx-go
9 DISTCLEAN += $(wildcard $(d)/gx-v*) $(wildcard $(d)/gx-go-v*) $(d)/tmp
mk/golang.mk
+1 -1
@@ -1,5 +1,5 @@
1 # golang utilities
2 -GO_MIN_VERSION = 1.7
2 +GO_MIN_VERSION = 1.8
3
4 # pre-definitions
5 GOTAGS ?=
package.json
+1 -1
@@ -4,7 +4,7 @@
4 },
5 "gx": {
6 "dvcsimport": "github.com/ipfs/go-ipfs",
7 - "goversion": "1.7"
7 + "goversion": "1.8"
8 },
9 "gxDependencies": [
10 {