File tree 4 files changed +16
-6
lines changed
4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v1.0.4
4
+
5
+ IMPROVEMENT
6
+ * [ \# 47] ( https://github.com/binance-chain/bsc/pull/47 ) upgrade to golang1.15.5
7
+
3
8
## v1.0.3
4
9
5
10
IMPROVEMENT
Original file line number Diff line number Diff line change 1
- # Build Geth in a stock Go builder container
2
- FROM golang:1.14-alpine as builder
1
+ FROM golang:1.15-alpine as builder
3
2
4
- RUN apk add --no-cache make gcc musl-dev linux-headers git
3
+ RUN apk add --no-cache make gcc musl-dev linux-headers git bash
4
+
5
+ # Temporarily pull a custom Go bundle
6
+ ADD https://golang.org/dl/go1.15.5.src.tar.gz /tmp/go.tar.gz
7
+ RUN (cd /tmp && tar -xf go.tar.gz)
8
+ RUN (cd /tmp/go/src && ./make.bash)
9
+ ENV PATH="/tmp/go/bin:${PATH}"
5
10
6
11
ADD . /go-ethereum
7
12
RUN cd /go-ethereum && make geth
@@ -13,4 +18,4 @@ RUN apk add --no-cache ca-certificates
13
18
COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/
14
19
15
20
EXPOSE 8545 8546 8547 30303 30303/udp
16
- ENTRYPOINT ["geth" ]
21
+ ENTRYPOINT ["geth" ]
Original file line number Diff line number Diff line change 1
1
module github.com/ethereum/go-ethereum
2
2
3
- go 1.13
3
+ go 1.15
4
4
5
5
require (
6
6
github.com/Azure/azure-pipeline-go v0.2.2 // indirect
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
23
23
const (
24
24
VersionMajor = 1 // Major version component of the current release
25
25
VersionMinor = 0 // Minor version component of the current release
26
- VersionPatch = 3 // Patch version component of the current release
26
+ VersionPatch = 4 // Patch version component of the current release
27
27
VersionMeta = "" // Version metadata to append to the version string
28
28
)
29
29
You can’t perform that action at this time.
0 commit comments