Skip to content

Commit dde1495

Browse files
authored
build: bump Go version to v1.21.0, lnd version to v0.17.0 rc1 (#7914)
* build: update Go version to 1.21.0 * build: bump version to v0.17.0 rc1
1 parent c07ec04 commit dde1495

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ env:
2929
# /dev.Dockerfile
3030
# /make/builder.Dockerfile
3131
# /.github/workflows/release.yml
32-
GO_VERSION: 1.20.3
32+
GO_VERSION: 1.21.0
3333

3434
jobs:
3535
########################

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
# /dev.Dockerfile
1717
# /make/builder.Dockerfile
1818
# /.github/workflows/main.yml
19-
GO_VERSION: 1.20.3
19+
GO_VERSION: 1.21.0
2020

2121
jobs:
2222
main:

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ go:
2121
# /make/builder.Dockerfile
2222
# /.github/workflows/main.yml
2323
# /.github/workflows/release.yml
24-
- "1.20.3"
24+
- "1.21.0"
2525

2626
env:
2727
global:

build/version.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ const (
4040
AppMajor uint = 0
4141

4242
// AppMinor defines the minor version of this binary.
43-
AppMinor uint = 16
43+
AppMinor uint = 17
4444

4545
// AppPatch defines the application patch for this binary.
46-
AppPatch uint = 99
46+
AppPatch uint = 0
4747

4848
// AppPreRelease MUST only contain characters from semanticAlphabet
4949
// per the semantic versioning spec.
50-
AppPreRelease = "beta"
50+
AppPreRelease = "beta.rc1"
5151
)
5252

5353
func init() {

dev.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# /make/builder.Dockerfile
55
# /.github/workflows/main.yml
66
# /.github/workflows/release.yml
7-
FROM golang:1.20.3-alpine as builder
7+
FROM golang:1.21.0-alpine as builder
88

99
LABEL maintainer="Olaoluwa Osuntokun <[email protected]>"
1010

make/builder.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# /dev.Dockerfile
55
# /.github/workflows/main.yml
66
# /.github/workflows/release.yml
7-
FROM golang:1.20.3-buster
7+
FROM golang:1.21.0-buster
88

99
MAINTAINER Olaoluwa Osuntokun <[email protected]>
1010

0 commit comments

Comments
 (0)